<?xml version="1.0" encoding="utf-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Das GEO-Forum - FileConverter</title>
<link>http://forum.diegeodaeten.de/</link>
<description>DieGeodaeten.de ist ein geodätisches Portal, welches von Vermessungsingenieuren der HS Neubrandenburg ins Leben gerufen wurde. Neben Neuigkeiten aus den Bereichen Geodäsie und Geoinformatik werden Buchempfehlungen oder Downloads angeboten.</description>
<language>de</language>
<item>
<title>FileConverter (Antwort)</title>
<content:encoded><![CDATA[<p>Super, Danke!</p>
]]></content:encoded>
<link>http://forum.diegeodaeten.de/index.php?id=5853</link>
<guid>http://forum.diegeodaeten.de/index.php?id=5853</guid>
<pubDate>Mon, 17 Jul 2017 06:48:00 +0000</pubDate>
<category>Geodäsie/Vermessung</category><dc:creator>Julian</dc:creator>
</item>
<item>
<title>FileConverter (Antwort)</title>
<content:encoded><![CDATA[<p>Hallo,</p>
<blockquote><p>Weißt du zufällig noch wie ob du einen Scanner oder Buffered Reader benutzt hast?</p>
</blockquote><p>Ist das wichtig für die Anwendung?</p>
<p>Laut Quelltext ist es ein <a href="https://docs.oracle.com/javase/8/docs/api/java/io/BufferedReader.html">BufferedReader</a> vgl.</p>
<pre class="java" style="font-family:monospace;">  <span style="color: #000000; font-weight: bold;">public</span> Vector<span style="color: #339933;">&lt;</span>String<span style="color: #339933;">&gt;</span> readSourcefile<span style="color: #009900;">&#40;</span><span style="color: #003399;">File</span> sFile<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>sFile.<span style="color: #006633;">exists</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> <span style="color: #339933;">!</span>sFile.<span style="color: #006633;">isFile</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> <span style="color: #339933;">!</span>sFile.<span style="color: #006633;">canRead</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
      <span style="color: #000000; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">null</span><span style="color: #339933;">;</span>
    Vector<span style="color: #339933;">&lt;</span>String<span style="color: #339933;">&gt;</span> v <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Vector<span style="color: #339933;">&lt;</span>String<span style="color: #339933;">&gt;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #003399;">InputStream</span> is <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">FileInputStream</span><span style="color: #009900;">&#40;</span> sFile <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #003399;">BufferedReader</span> br <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">BufferedReader</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">InputStreamReader</span><span style="color: #009900;">&#40;</span>is<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #003399;">String</span> line <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #000000; font-weight: bold;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span> line <span style="color: #339933;">=</span> br.<span style="color: #006633;">readLine</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #000066; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span>
        v.<span style="color: #006633;">add</span><span style="color: #009900;">&#40;</span> line <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      br.<span style="color: #006633;">close</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000000; font-weight: bold;">catch</span> <span style="color: #009900;">&#40;</span><span style="color: #003399;">Exception</span> err<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #003399;">System</span>.<span style="color: #006633;">err</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span>err<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #000000; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">null</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000000; font-weight: bold;">return</span> v<span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span></pre><p><br />
Viele Grüße<br />
Micha</p>
]]></content:encoded>
<link>http://forum.diegeodaeten.de/index.php?id=5852</link>
<guid>http://forum.diegeodaeten.de/index.php?id=5852</guid>
<pubDate>Sun, 16 Jul 2017 19:46:28 +0000</pubDate>
<category>Geodäsie/Vermessung</category><dc:creator>MichaeL</dc:creator>
</item>
<item>
<title>FileConverter (Antwort)</title>
<content:encoded><![CDATA[<p>Hey Michael,</p>
<p>vielen dank!!!</p>
<p>Weißt du zufällig noch wie ob du einen Scanner oder Buffered Reader benutzt hast?</p>
]]></content:encoded>
<link>http://forum.diegeodaeten.de/index.php?id=5851</link>
<guid>http://forum.diegeodaeten.de/index.php?id=5851</guid>
<pubDate>Sun, 16 Jul 2017 16:28:40 +0000</pubDate>
<category>Geodäsie/Vermessung</category><dc:creator>Julian</dc:creator>
</item>
<item>
<title>FileConverter (Antwort)</title>
<content:encoded><![CDATA[<p>Hallo Julian,</p>
<p>ich habe Deine Anfrage mal ins Forum geschoben, da sie dort besser platziert ist.</p>
<blockquote><p>Gibt es den FileConverter noch zum Downloaden bzw. kannst du mir den<br />
Quellcode geben um diesen anzupassen?</p>
</blockquote><p>Ich pflege diese Software nicht mehr und habe vor vielleicht einem halben Jahr das zugehörige Projekt bei sf.net aufgelöst. Im Netz gibt es aber noch Versionen, die das damalige Projekt gespiegelt haben, wie bspw. auf Softpedia: <a href="http://www.softpedia.com/get/Programming/Other-Programming-Files/FileConverter.shtml">FileConverter</a>.</p>
<p>Viele Grüße<br />
Micha</p>
]]></content:encoded>
<link>http://forum.diegeodaeten.de/index.php?id=5850</link>
<guid>http://forum.diegeodaeten.de/index.php?id=5850</guid>
<pubDate>Thu, 13 Jul 2017 14:01:50 +0000</pubDate>
<category>Geodäsie/Vermessung</category><dc:creator>MichaeL</dc:creator>
</item>
<item>
<title>FileConverter</title>
<content:encoded><![CDATA[<p>Hallo Michael,</p>
<p>wir müssen in unserem Büro GSI Dateien in das GEOgraf PKT-Format<br />
bringen:</p>
<p>Punktnummer,Code,Rechtswert,Hochwert,Höhe</p>
<p>Gibt es den FileConverter noch zum Downloaden bzw. kannst du mir den<br />
Quellcode geben um diesen anzupassen?</p>
<p>Würde mir sehr weiterhelfen!!!</p>
<p>Beste Grüße</p>
<p>Julian</p>
]]></content:encoded>
<link>http://forum.diegeodaeten.de/index.php?id=5849</link>
<guid>http://forum.diegeodaeten.de/index.php?id=5849</guid>
<pubDate>Thu, 13 Jul 2017 13:58:30 +0000</pubDate>
<category>Geodäsie/Vermessung</category><dc:creator>Julian</dc:creator>
</item>
</channel>
</rss>
