<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>技術情報ブログ &#187; JAVA</title>
	<atom:link href="http://tecblog.oarts.jp/?cat=7&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://tecblog.oarts.jp</link>
	<description>Posted by Oriental Arts</description>
	<lastBuildDate>Wed, 26 Sep 2012 03:11:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>java byte配列コピー２</title>
		<link>http://tecblog.oarts.jp/?p=24</link>
		<comments>http://tecblog.oarts.jp/?p=24#comments</comments>
		<pubDate>Thu, 24 Dec 2009 06:47:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[言語]]></category>

		<guid isPermaLink="false">http://tecblog.oarts.jp/?p=24</guid>
		<description><![CDATA[Systemに何故かcopyメソッドが存在？
System.arraycopy(src, 0, dst, count, len);
]]></description>
			<content:encoded><![CDATA[<p>Systemに何故かcopyメソッドが存在？</p>
<p>System.arraycopy(src, 0, dst, count, len);</p>
]]></content:encoded>
			<wfw:commentRss>http://tecblog.oarts.jp/?feed=rss2&amp;p=24</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>java byte配列のコピー</title>
		<link>http://tecblog.oarts.jp/?p=13</link>
		<comments>http://tecblog.oarts.jp/?p=13#comments</comments>
		<pubDate>Wed, 23 Dec 2009 17:50:15 +0000</pubDate>
		<dc:creator>oakita</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[言語]]></category>

		<guid isPermaLink="false">http://tecblog.oarts.jp/?p=13</guid>
		<description><![CDATA[FileInputStream fis=null;
  try {
   fis = new FileInputStream(fileName);
 
   int count = 0;
   int len;
   byte [] src = new byte[1024];
   try {
 while ((len = fis.read(dst, count, len )) != 0) {  // 読み込み
  count+=len;
 }
   } catch (IOException e) {
    e.printStackTrace();
   }
  } catch (FileNotFoundException e) {
   e.printStackTrace();
  }finally{
   try {
    if(fis != null) {
     fis.close();
    }
   [...]]]></description>
			<content:encoded><![CDATA[<p>FileInputStream fis=null;<br />
  try {<br />
   fis = new FileInputStream(fileName);<br />
 <br />
   int count = 0;<br />
   int len;<br />
   byte [] src = new byte[1024];<br />
   try {</p>
<p> while ((len = fis.read(dst, count, len )) != 0) {  // 読み込み<br />
  count+=len;<br />
 }<br />
   } catch (IOException e) {<br />
    e.printStackTrace();<br />
   }<br />
  } catch (FileNotFoundException e) {<br />
   e.printStackTrace();<br />
  }finally{<br />
   try {<br />
    if(fis != null) {<br />
     fis.close();<br />
    }<br />
   } catch (IOException e) {<br />
    e.printStackTrace();<br />
   }<br />
  }</p>
]]></content:encoded>
			<wfw:commentRss>http://tecblog.oarts.jp/?feed=rss2&amp;p=13</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
