<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" >
   <channel>
    <atom:link href="http://pavel-kaufmann.webnode.cz/rss/programovani-java-.xml" rel="self" type="application/rss+xml" />
      <title><![CDATA[Programování - JAVA  - pavel-kaufmann.webnode.cz]]></title>
      <link>http://pavel-kaufmann.webnode.cz</link>
      <language>cs</language>
      <pubDate>Sun, 28 Oct 2012 10:58:00 +0100</pubDate>
      <lastBuildDate>Sun, 28 Oct 2012 10:58:00 +0100</lastBuildDate>
      <category><![CDATA[Programování - JAVA ]]></category>
      <docs>http://blogs.law.harvard.edu/tech/rss</docs>
      <generator>Webnode</generator>
      <item>
         <title><![CDATA[LinkedList - Iterator]]></title>
         <link>http://pavel-kaufmann.webnode.cz/news/linkedlist-iterator/</link>
         <description><![CDATA[
	&nbsp;

	public static LinkedList&lt;String&gt; data = new LinkedList&lt;String&gt;();

	for (Iterator i = data.iterator();i.hasNext();)

	{

	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;System.out.println(i.next());&nbsp;

	}
]]></description>
         <pubDate>Sun, 28 Oct 2012 10:58:00 +0100</pubDate>
         <guid isPermaLink="true">http://pavel-kaufmann.webnode.cz/news/linkedlist-iterator/</guid>
         <category><![CDATA[Programování - JAVA ]]></category>
      </item>
      <item>
         <title><![CDATA[Použití s Text *.split]]></title>
         <link>http://pavel-kaufmann.webnode.cz/news/pouziti-s-text-split/</link>
         <description><![CDATA[
	&nbsp;

	text = readfile(text);

	&nbsp;String[] t = text.split(",");

	&nbsp;String s = "";

	&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (int i=0;i&lt;t.length;i++){&nbsp;s = s+t[i];}

	&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String[] l = s.split("=");

	&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (int i=0;i&lt;l.length;i++){&nbsp;System.out.println(l[i]);}
]]></description>
         <pubDate>Sun, 28 Oct 2012 10:56:00 +0100</pubDate>
         <guid isPermaLink="true">http://pavel-kaufmann.webnode.cz/news/pouziti-s-text-split/</guid>
         <category><![CDATA[Programování - JAVA ]]></category>
      </item>
      <item>
         <title><![CDATA[Kopirovaní souborů]]></title>
         <link>http://pavel-kaufmann.webnode.cz/news/kopirovani-souboru/</link>
         <description><![CDATA[
	&nbsp;

	//*************************************************************

	&nbsp; &nbsp; public static void copyFile(File of,File to)throws IOException{

	&nbsp; &nbsp; InputStream in = new FileInputStream(of);

	&nbsp; &nbsp; OutputStream out = new FileOutputStream (to);

	try{

	&nbsp; &nbsp; // Transfer bytes from in to out

	&nbsp; &nbsp; byte[] buf = new byte[1024];

	&nbsp; &nbsp; int len;

	&nbsp; &nbsp; while ((len = in.read(buf))&gt;0){

	&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;...]]></description>
         <pubDate>Sun, 28 Oct 2012 10:55:00 +0100</pubDate>
         <guid isPermaLink="true">http://pavel-kaufmann.webnode.cz/news/kopirovani-souboru/</guid>
         <category><![CDATA[Programování - JAVA ]]></category>
      </item>
      <item>
         <title><![CDATA[Čteni ze souboru FileReader()]]></title>
         <link>http://pavel-kaufmann.webnode.cz/news/cteni-ze-souboru-filereader-/</link>
         <description><![CDATA[
	&nbsp;

	public class DataFile {

	/*

	&nbsp; &nbsp; &nbsp; &nbsp; Soubor vytvorte v tomto formatu

	&nbsp; &nbsp; &nbsp; &nbsp; Ahoj;Svete

	&nbsp; &nbsp; &nbsp; &nbsp; mam;se

	&nbsp; &nbsp; &nbsp; &nbsp; moc;dobre

	&nbsp;*/

	&nbsp; &nbsp; public static String dataFile(String name){

	&nbsp; &nbsp; &nbsp; &nbsp; FileReader fr = null;

	&nbsp; &nbsp; &nbsp; &nbsp; String beforeTakataname = "";

	&nbsp; &nbsp; &nbsp; &nbsp; String afterThamesname = "";

	&nbsp;

	&nbsp; &nbsp; &nbsp;...]]></description>
         <pubDate>Sun, 28 Oct 2012 10:49:00 +0100</pubDate>
         <guid isPermaLink="true">http://pavel-kaufmann.webnode.cz/news/cteni-ze-souboru-filereader-/</guid>
         <category><![CDATA[Programování - JAVA ]]></category>
      </item>
      <item>
         <title><![CDATA[Datum a Čas,Juliánský z OS]]></title>
         <link>http://pavel-kaufmann.webnode.cz/news/datum-a-cas-juliansky-z-os/</link>
         <description><![CDATA[
	&nbsp;


	
		class ReadDateTime&nbsp;{
	
		&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private Date fromDate =null;
	
		&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private SimpleDateFormat formatter;
	
		&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private Date currentDate = new Date();
	
		&nbsp;
	
		public ReadDateTime(){
	
		&nbsp; &nbsp; fromDate=currentDate;
	
		&nbsp; &nbsp; formatter = new...]]></description>
         <pubDate>Sun, 28 Oct 2012 10:47:00 +0100</pubDate>
         <guid isPermaLink="true">http://pavel-kaufmann.webnode.cz/news/datum-a-cas-juliansky-z-os/</guid>
         <category><![CDATA[Programování - JAVA ]]></category>
      </item>
   </channel>
</rss>