<?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>Infoknows.com</title>
	<atom:link href="http://www.infoknows.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.infoknows.com</link>
	<description>あるパソコン好きの高校生によるブログ。</description>
	<lastBuildDate>Sat, 28 Aug 2010 14:54:08 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>ニコニコapiで、Javaからコメント鯖にソケット接続できない。【バイトデータだけ受け取れた編】</title>
		<link>http://www.infoknows.com/%e3%83%8b%e3%82%b3%e3%83%8b%e3%82%b3api%e3%81%a7%e3%80%81java%e3%81%8b%e3%82%89%e3%82%b3%e3%83%a1%e3%83%b3%e3%83%88%e9%af%96%e3%81%ab%e3%82%bd%e3%82%b1%e3%83%83%e3%83%88%e6%8e%a5%e7%b6%9a%e3%81%a7-2/</link>
		<comments>http://www.infoknows.com/%e3%83%8b%e3%82%b3%e3%83%8b%e3%82%b3api%e3%81%a7%e3%80%81java%e3%81%8b%e3%82%89%e3%82%b3%e3%83%a1%e3%83%b3%e3%83%88%e9%af%96%e3%81%ab%e3%82%bd%e3%82%b1%e3%83%83%e3%83%88%e6%8e%a5%e7%b6%9a%e3%81%a7-2/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 14:50:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[niconico]]></category>

		<guid isPermaLink="false">http://www.infoknows.com/?p=250</guid>
		<description><![CDATA[だいぶ前に投稿した、 ニコニコapiで、Javaからコメント鯖にソケット接続できない。に、検索で辿り着いている方がそこそこいらっしゃるので、とりあえずバイトデータだけ受信で来たソースを貼っておきます。
 


priva [...]]]></description>
			<content:encoded><![CDATA[<p>だいぶ前に投稿した、<strong> </strong><strong><a title="“ニコニコapiで、Javaからコメント鯖にソケット接続できない。” を編集する" href="http://www.infoknows.com/%E3%83%8B%E3%82%B3%E3%83%8B%E3%82%B3api%E3%81%A7%E3%80%81java%E3%81%8B%E3%82%89%E3%82%B3%E3%83%A1%E3%83%B3%E3%83%88%E9%AF%96%E3%81%AB%E3%82%BD%E3%82%B1%E3%83%83%E3%83%88%E6%8E%A5%E7%B6%9A%E3%81%A7/">ニコニコapiで、Javaからコメント鯖にソケット接続できない。</a>に、検索で辿り着いている方がそこそこいらっしゃるので、とりあえずバイトデータだけ受信で来たソースを貼っておきます。</strong></p>
<p><strong> </strong></p>
<pre><strong>
<pre class="brush: java;">
private String[] connectCommentServer(String address,int port,String thread) {

 try {
 Socket connectSocket = new Socket(address,port);
 //InetSocketAddress socketAddress = new InetSocketAddress(address, port);
 //connectSocket.connect(socketAddress, timeoutSocket);
 System.out.println(&quot;接続しました&quot; + connectSocket.getRemoteSocketAddress());

 // 出力ストリームを取得
 PrintWriter out = new PrintWriter(connectSocket.getOutputStream(), true);
 out.println(&quot;&lt;thread thread=\&quot;&quot; + thread + &quot;\&quot; version=\&quot;20061206\&quot; res_from=\&quot;-1\&quot; /&gt;&#92;&#48;&quot;);
 // 入力ストリームを取得
 InputStreamReader ipr = new InputStreamReader(connectSocket.getInputStream());
 BufferedReader in = new BufferedReader(ipr);

 int line;
 String xmlData = &quot;&quot;;
 while(0 != (line = in.read())) {
 in.read();
 xmlData += line;
 System.out.println(line);
 }

 // 入出力ストリームを閉じる
 out.close();
 in.close();
 // ソケットを閉じる
 connectSocket.close();

 } catch (IOException e) {
 e.printStackTrace();
 }
 return null;
 }
</pre>
<p></strong></pre>
<p><strong>自分はバイトデータが一体何なのか、というところから勉強する必要があるので、これ以上のソースは貼れません・・・；；</strong></p>
<p><strong><strong><br />
</strong></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoknows.com/%e3%83%8b%e3%82%b3%e3%83%8b%e3%82%b3api%e3%81%a7%e3%80%81java%e3%81%8b%e3%82%89%e3%82%b3%e3%83%a1%e3%83%b3%e3%83%88%e9%af%96%e3%81%ab%e3%82%bd%e3%82%b1%e3%83%83%e3%83%88%e6%8e%a5%e7%b6%9a%e3%81%a7-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iGoogle晒し</title>
		<link>http://www.infoknows.com/igoogle%e6%99%92%e3%81%97/</link>
		<comments>http://www.infoknows.com/igoogle%e6%99%92%e3%81%97/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 16:57:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ぼやき]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[iGoogle]]></category>

		<guid isPermaLink="false">http://www.infoknows.com/?p=243</guid>
		<description><![CDATA[iGoogleって知ってます？
２年くらい前から自社のアドセンス広告でも宣伝してるみたいですが、使ってる人多いのかな？
iGoogleというのは、&#8221;自分自身のスタートページ&#8221;を作ることができるサー [...]]]></description>
			<content:encoded><![CDATA[<p><strong>iGoogle</strong>って知ってます？<br />
２年くらい前から自社のアドセンス広告でも宣伝してるみたいですが、使ってる人多いのかな？</p>
<p>iGoogleというのは、&#8221;自分自身のスタートページ&#8221;を作ることができるサービスです。<br />
簡単にいえば、<strong>&#8220;MyYahoo!のGoogle版&#8221;</strong>です。<br />
僕はこれを使い始めてから、ガラッと情報収集のスタイルが良い方向へ変わりました。</p>
<p>まず、読みたい新聞社のニュース記事のヘッドラインが並べられる。<br />
ヤフーをスタートページにしていた頃と同じ感覚で、ニュースを漁れます。</p>
<p>次に、ＲＳＳリーダーにアクセスしなくても、新着記事のヘッドラインを見ることができる。<br />
RSSリーダーはそもそも使ったこと無いんですが、なにせスタートページに並べられるのは最高。</p>
<p>僕は使ってないんですが、Gmailの新着情報なんかもおけますし、<strong>Yahoo!⇒Googleへとシフトしている方は是非使うべき</strong>です。<br />
確認すべき<strong>情報のすべてが、スタートページに集められ、１クリックまたは２クリックで情報収集</strong>ができるようになります。</p>
<p>あと最近、<strong>タブの便利さ</strong>に気が付きました。<br />
これがあると、<strong>情報収集の優先順位</strong>が付けられるんですよね。<br />
時間が無い時は１枚目のタブのみ、暇なときは２枚目も、とか。</p>
<p>ということで、一つの例として僕のiGoogleを晒してみます。</p>
<p><span style="text-decoration: underline;"><em>１枚目</em></span></p>
<p><a href="http://www.infoknows.com/wp-content/uploads/WS0000001.jpg"><img class="alignnone size-medium wp-image-244" title="WS000000" src="http://www.infoknows.com/wp-content/uploads/WS0000001-300x159.jpg" alt="" width="300" height="159" /></a><br />
<span style="text-decoration: underline;"><em>２枚目</em></span></p>
<p><a href="http://www.infoknows.com/wp-content/uploads/WS000001.jpg"><img class="alignnone size-medium wp-image-245" title="WS000001" src="http://www.infoknows.com/wp-content/uploads/WS000001-300x159.jpg" alt="" width="300" height="159" /></a></p>
<p>そういえば、Googleは遂に電話事業にも手を出したみたいですね。<br />
って、気づくの遅いか。<a href="http://k-tai.impress.co.jp/docs/news/20100826_389425.html" target="_blank">GMailから使えるようになって</a>やっと気付きました。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoknows.com/igoogle%e6%99%92%e3%81%97/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IMGタグに閉じタグ付けてるのにW3Cでエラーが出るって方</title>
		<link>http://www.infoknows.com/img%e3%82%bf%e3%82%b0%e3%81%ab%e9%96%89%e3%81%98%e3%82%bf%e3%82%b0%e4%bb%98%e3%81%91%e3%81%a6%e3%82%8b%e3%81%ae%e3%81%abw3c%e3%81%a7%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%8c%e5%87%ba%e3%82%8b%e3%81%a3/</link>
		<comments>http://www.infoknows.com/img%e3%82%bf%e3%82%b0%e3%81%ab%e9%96%89%e3%81%98%e3%82%bf%e3%82%b0%e4%bb%98%e3%81%91%e3%81%a6%e3%82%8b%e3%81%ae%e3%81%abw3c%e3%81%a7%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%8c%e5%87%ba%e3%82%8b%e3%81%a3/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 09:36:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[技術メモ]]></category>

		<guid isPermaLink="false">http://www.infoknows.com/?p=239</guid>
		<description><![CDATA[閉じタグの無いHTMLタグは、その開始タグの末尾にスペーススラッシュを付けると良いとか聞いてわざわざ付けたのに、
W3Cのチェックで &#8220;NET-enabling start-tag requires SHOR [...]]]></description>
			<content:encoded><![CDATA[<p>閉じタグの無いHTMLタグは、その開始タグの末尾にスペーススラッシュを付けると良いとか聞いてわざわざ付けたのに、<br />
W3Cのチェックで &#8220;NET-enabling start-tag requires SHORTTAG YES&#8221; とエラーが出てしまうって方。</p>
<p>エラー文によると、この書き方はXHTMLの書き方みたいですね。<br />
よって、DocutypeではHTML4.01ではなくXTML1.0を指定する必要があります。<br />
詳しくは⇒<a title="http://codex.wordpress.org/HTML_to_XHTML" href="http://codex.wordpress.org/HTML_to_XHTML" target="_blank">HTML to XHTML « WordPress Codex:</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoknows.com/img%e3%82%bf%e3%82%b0%e3%81%ab%e9%96%89%e3%81%98%e3%82%bf%e3%82%b0%e4%bb%98%e3%81%91%e3%81%a6%e3%82%8b%e3%81%ae%e3%81%abw3c%e3%81%a7%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%8c%e5%87%ba%e3%82%8b%e3%81%a3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>今日使ったubuntuコマンド</title>
		<link>http://www.infoknows.com/%e4%bb%8a%e6%97%a5%e4%bd%bf%e3%81%a3%e3%81%9fubuntu%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89/</link>
		<comments>http://www.infoknows.com/%e4%bb%8a%e6%97%a5%e4%bd%bf%e3%81%a3%e3%81%9fubuntu%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 03:27:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.infoknows.com/?p=236</guid>
		<description><![CDATA[どうしても root権限で作業がしたかったので、Linuxの醍醐味？と言われるコマンド操作をしてみた。
sudo su &#8211; : ルート権限に乗り換える。
mv [元フォルダ] [移動先フォルダ] : フォルダ [...]]]></description>
			<content:encoded><![CDATA[<p>どうしても root権限で作業がしたかったので、Linuxの醍醐味？と言われるコマンド操作をしてみた。</p>
<p>sudo su &#8211; : ルート権限に乗り換える。<br />
mv [元フォルダ] [移動先フォルダ] : フォルダまるまる移動。<br />
rm -r [フォルダ] : フォルダまるまる削除。(ファイルの場合は -r オプションはなし。)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoknows.com/%e4%bb%8a%e6%97%a5%e4%bd%bf%e3%81%a3%e3%81%9fubuntu%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JFrameを任意のボタンで閉じる</title>
		<link>http://www.infoknows.com/jframe%e3%82%92%e4%bb%bb%e6%84%8f%e3%81%ae%e3%83%9c%e3%82%bf%e3%83%b3%e3%81%a7%e9%96%89%e3%81%98%e3%82%8b/</link>
		<comments>http://www.infoknows.com/jframe%e3%82%92%e4%bb%bb%e6%84%8f%e3%81%ae%e3%83%9c%e3%82%bf%e3%83%b3%e3%81%a7%e9%96%89%e3%81%98%e3%82%8b/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 13:56:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Swing]]></category>

		<guid isPermaLink="false">http://www.infoknows.com/?p=233</guid>
		<description><![CDATA[SwingのクラスであるＪＦrameは、リファレンスをよく見ると クラス java.awt.Window から メソッド dispose() が継承されてます。

]]></description>
			<content:encoded><![CDATA[<p>SwingのクラスであるＪＦrameは、リファレンスをよく見ると <strong>クラス java.awt.<a title="java.awt 内のクラス" href="http://www3.ea.u-tokai.ac.jp/%7Esakata/jdk5/docs/ja/api/java/awt/Window.html">Window</a> から メソッド dispose() が継承されてます。<br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoknows.com/jframe%e3%82%92%e4%bb%bb%e6%84%8f%e3%81%ae%e3%83%9c%e3%82%bf%e3%83%b3%e3%81%a7%e9%96%89%e3%81%98%e3%82%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaでHTMLのFieldSetタグみたいなことをする</title>
		<link>http://www.infoknows.com/java%e3%81%a7html%e3%81%aefieldset%e3%82%bf%e3%82%b0%e3%81%bf%e3%81%9f%e3%81%84%e3%81%aa%e3%81%93%e3%81%a8%e3%82%92%e3%81%99%e3%82%8b/</link>
		<comments>http://www.infoknows.com/java%e3%81%a7html%e3%81%aefieldset%e3%82%bf%e3%82%b0%e3%81%bf%e3%81%9f%e3%81%84%e3%81%aa%e3%81%93%e3%81%a8%e3%82%92%e3%81%99%e3%82%8b/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 06:29:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Swing]]></category>

		<guid isPermaLink="false">http://www.infoknows.com/?p=227</guid>
		<description><![CDATA[
日本語の情報が全くなかったのでここで紹介しておきます。
設定画面なんかで主にWINDOWS向きのデスクトップアプリケーションを組んでるとやりたくなることです。
JavaのSwingコンポーネントの中に、TitledBo [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.infoknows.com/wp-content/uploads/WS000000.jpg"><img class="alignnone size-full wp-image-229" title="WS000000" src="http://www.infoknows.com/wp-content/uploads/WS000000.jpg" alt="" width="434" height="87" /></a></p>
<p>日本語の情報が全くなかったのでここで紹介しておきます。</p>
<p>設定画面なんかで主にWINDOWS向きのデスクトップアプリケーションを組んでるとやりたくなることです。</p>
<p>JavaのSwingコンポーネントの中に、<strong><em>TitledBorder</em></strong>というクラスがあります。</p>
<p>これで実現できました。<br />
リファレンスはこちら。<strong> ： </strong><a href="http://java.sun.com/j2se/1.5.0/ja/docs/ja/api/javax/swing/border/TitledBorder.html" target="_blank"><strong>javax.swing.border.TitledBorder</strong></a></p>
<p>情報源: http://www.tek-tips.com/viewthread.cfm?qid=973106&amp;page=117</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoknows.com/java%e3%81%a7html%e3%81%aefieldset%e3%82%bf%e3%82%b0%e3%81%bf%e3%81%9f%e3%81%84%e3%81%aa%e3%81%93%e3%81%a8%e3%82%92%e3%81%99%e3%82%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ニコニコapiで、Javaからコメント鯖にソケット接続できない。</title>
		<link>http://www.infoknows.com/%e3%83%8b%e3%82%b3%e3%83%8b%e3%82%b3api%e3%81%a7%e3%80%81java%e3%81%8b%e3%82%89%e3%82%b3%e3%83%a1%e3%83%b3%e3%83%88%e9%af%96%e3%81%ab%e3%82%bd%e3%82%b1%e3%83%83%e3%83%88%e6%8e%a5%e7%b6%9a%e3%81%a7/</link>
		<comments>http://www.infoknows.com/%e3%83%8b%e3%82%b3%e3%83%8b%e3%82%b3api%e3%81%a7%e3%80%81java%e3%81%8b%e3%82%89%e3%82%b3%e3%83%a1%e3%83%b3%e3%83%88%e9%af%96%e3%81%ab%e3%82%bd%e3%82%b1%e3%83%83%e3%83%88%e6%8e%a5%e7%b6%9a%e3%81%a7/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 12:37:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[niconico]]></category>

		<guid isPermaLink="false">http://www.infoknows.com/?p=223</guid>
		<description><![CDATA[誰か続きやってください。


private String[] connectCommentServer(String address,int port,String thread) {

 try {
 Socket  [...]]]></description>
			<content:encoded><![CDATA[<p>誰か続きやってください。</p>
<pre class="brush: java;">

private String[] connectCommentServer(String address,int port,String thread) {

 try {
 Socket connectSocket = new Socket(address,port);
 //InetSocketAddress socketAddress = new InetSocketAddress(address, port);
 //connectSocket.connect(socketAddress, timeoutSocket);
 System.out.println(&quot;接続しました&quot; + connectSocket.getRemoteSocketAddress());

 // 出力ストリームを取得
 PrintWriter out = new PrintWriter(connectSocket.getOutputStream(), true);
 // 入力ストリームを取得
 BufferedReader in = new BufferedReader(new InputStreamReader(connectSocket.getInputStream()));

 out.println(&quot;&lt;thread thread=\&quot;&quot; + thread + &quot;\&quot; version=\&quot;20061206\&quot; res_from=\&quot;-1\&quot; /&gt;&quot;);

 String line;
 String xmlData = &quot;&quot;;

 while(null != (line = in.readLine())) {
 System.out.println(in.readLine());
 xmlData += line;
 }

 // 入出力ストリームを閉じる
 out.close();
 in.close();
 // ソケットを閉じる
 connectSocket.close();

 } catch (IOException e) {
 e.printStackTrace();
 }
 return null;
 }
</pre>
<p><a href="http://www.infoknows.com/%E3%83%8B%E3%82%B3%E3%83%8B%E3%82%B3api%E3%81%A7%E3%80%81java%E3%81%8B%E3%82%89%E3%82%B3%E3%83%A1%E3%83%B3%E3%83%88%E9%AF%96%E3%81%AB%E3%82%BD%E3%82%B1%E3%83%83%E3%83%88%E6%8E%A5%E7%B6%9A%E3%81%A7-2/">バイトデータだけ受け取れた編</a>　でとりあえずソース公開しました。</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.infoknows.com/%e3%83%8b%e3%82%b3%e3%83%8b%e3%82%b3api%e3%81%a7%e3%80%81java%e3%81%8b%e3%82%89%e3%82%b3%e3%83%a1%e3%83%b3%e3%83%88%e9%af%96%e3%81%ab%e3%82%bd%e3%82%b1%e3%83%83%e3%83%88%e6%8e%a5%e7%b6%9a%e3%81%a7/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Vistaで焼いたUDF形式のCD-RをXPで読み取る</title>
		<link>http://www.infoknows.com/vista%e3%81%a7%e7%84%bc%e3%81%84%e3%81%9fudf%e5%bd%a2%e5%bc%8f%e3%81%aecd-r%e3%82%92xp%e3%81%a7%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b/</link>
		<comments>http://www.infoknows.com/vista%e3%81%a7%e7%84%bc%e3%81%84%e3%81%9fudf%e5%bd%a2%e5%bc%8f%e3%81%aecd-r%e3%82%92xp%e3%81%a7%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 12:55:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ぼやき]]></category>
		<category><![CDATA[cd]]></category>
		<category><![CDATA[udf]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[xp]]></category>
		<category><![CDATA[パケットライト]]></category>
		<category><![CDATA[読み取り]]></category>

		<guid isPermaLink="false">http://www.infoknows.com/?p=219</guid>
		<description><![CDATA[先日、ある人から画像の入ったCD-Rをもらったのだが、それはどうやらVistaで焼いたものらしくXPでは読み取ることができなかった。
原因は、そのディスクがパケットライトと呼ばれる方式で焼かれていて、ファイルシステムがU [...]]]></description>
			<content:encoded><![CDATA[<p>先日、ある人から画像の入ったCD-Rをもらったのだが、それはどうやらVistaで焼いたものらしくXPでは読み取ることができなかった。</p>
<p>原因は、そのディスクがパケットライトと呼ばれる方式で焼かれていて、ファイルシステムがUDF2.01であったこと。<br />
XPはいくつかのUDF形式のCD-Rをサポートしているようだが、少しでもバージョンが違うと読めないものがあるよう。</p>
<p>そこで・・・</p>
<h2><strong>解決策</strong></h2>
<ol>
<li>
<h3><span style="text-decoration: underline;">RoxioUDF リーダー を入れてみる</span></h3>
<p>これが一般的に取られる手段のようです。<br />
僕の場合は、これを入れても見ることができませんでした。</p>
<p>ダウンロード : <a href="http://www2.roxio.jp/support/download/dcd/udf511213.html" target="_blank">RoxioUDF リーダー</a></li>
<li>
<h3><span style="text-decoration: underline;">VOB InstantReadを入れてみる</span></h3>
<p>前者が無効だったので、これを入れてみたところ無事に読み取ることができました。</p>
<p>ダウンロード : <a href="http://www.pinnaclesys.com/WebVideo/Instant%20Copy/English(US)/doc/instantread.exe" target="_blank">VOB InstantRead</a><br />
<em>(このソフトは現在は公式サイトで配布されておらず、このダウンロードリンクは公式リンクではありません。)</em></li>
</ol>
<p>Vistaは互換性に劣るという噂を出た当初から聞いていましたが、こんなところで痛い目に遭うとは思いませんでした。</p>
<p>感謝 : <a href="http://travel-lab.info/tech/pblog/article.php?id=203" target="_blank">Travellers Tales UDF Volume の中身をコピーする (Windows編)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoknows.com/vista%e3%81%a7%e7%84%bc%e3%81%84%e3%81%9fudf%e5%bd%a2%e5%bc%8f%e3%81%aecd-r%e3%82%92xp%e3%81%a7%e8%aa%ad%e3%81%bf%e5%8f%96%e3%82%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java ニコニコAPIで認証 POST</title>
		<link>http://www.infoknows.com/java-%e3%83%8b%e3%82%b3%e3%83%8b%e3%82%b3api%e3%81%a7%e8%aa%8d%e8%a8%bc-post/</link>
		<comments>http://www.infoknows.com/java-%e3%83%8b%e3%82%b3%e3%83%8b%e3%82%b3api%e3%81%a7%e8%aa%8d%e8%a8%bc-post/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 14:27:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[niconico]]></category>

		<guid isPermaLink="false">http://www.infoknows.com/?p=216</guid>
		<description><![CDATA[JavaでPOSTをニコニコに送信するときは、演算子を &#38; にしませう。。。 ；； final String USER_AGENT = &#34;Niconico Checker&#34;; final String auth_URL = &#34;https://secure.nicovideo.jp/secure/login?site=nicolive_antenna&#34;; private int loginApp(String mail,int pass){ PrintStream ps    = null; BufferedReader br = null; URL loginURL; try { loginURL = new URL(auth_URL); URLConnection con = loginURL.openConnection(); con.setDoOutput(true); //con.setRequestProperty(&#34;User-Agent&#34;, USER_AGENT); // 送信する OutputStream os = con.getOutputStream(); ps = new PrintStream(os); ps.print(&#34;mail=&#34; + [...]]]></description>
			<content:encoded><![CDATA[<p>JavaでPOSTをニコニコに送信するときは、演算子を &amp; にしませう。。。 ；；</p>
<pre class="brush: java;">

final String USER_AGENT = &quot;Niconico Checker&quot;;
 final String auth_URL = &quot;https://secure.nicovideo.jp/secure/login?site=nicolive_antenna&quot;;

 private int loginApp(String mail,int pass){
 PrintStream ps    = null;
 BufferedReader br = null;
 URL loginURL;

 try {
 loginURL = new URL(auth_URL);
 URLConnection con = loginURL.openConnection();
 con.setDoOutput(true);
 //con.setRequestProperty(&quot;User-Agent&quot;, USER_AGENT);

 // 送信する
 OutputStream os = con.getOutputStream();
 ps = new PrintStream(os);
 ps.print(&quot;mail=&quot; + mail + &quot;&amp;&quot; + &quot;password=&quot; + pass + &quot;&quot;);

 // 受信する
 InputStreamReader    ir1 = new InputStreamReader(con.getInputStream());
 BufferedReader    br1 = new BufferedReader(ir1);

 String line;
 while((line=br1.readLine()) != null) {
 System.out.println(line);
 }

 br1.close();
 ir1.close();

 } catch (MalformedURLException e) {
 e.printStackTrace();
 } catch (IOException e) {
 e.printStackTrace();
 } finally {
 if (null != ps) {
 ps.close();
 }
 if (null != br) {
 try {
 br.close();
 } catch (IOException e) {
 e.printStackTrace();
 }
 }

 }

 return 0;
 }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.infoknows.com/java-%e3%83%8b%e3%82%b3%e3%83%8b%e3%82%b3api%e3%81%a7%e8%aa%8d%e8%a8%bc-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javaで正規表現を使ってURLをチェック</title>
		<link>http://www.infoknows.com/java%e3%81%a7%e6%ad%a3%e8%a6%8f%e8%a1%a8%e7%8f%be%e3%82%92%e4%bd%bf%e3%81%a3%e3%81%a6url%e3%82%92%e3%83%81%e3%82%a7%e3%83%83%e3%82%af/</link>
		<comments>http://www.infoknows.com/java%e3%81%a7%e6%ad%a3%e8%a6%8f%e8%a1%a8%e7%8f%be%e3%82%92%e4%bd%bf%e3%81%a3%e3%81%a6url%e3%82%92%e3%83%81%e3%82%a7%e3%83%83%e3%82%af/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 13:06:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.infoknows.com/?p=210</guid>
		<description><![CDATA[めんどくさいのでクラスにした簡単なのがありました。

public static void main(String[] args) {
String regex = &#34;\\b(https?&#124;ftp&#124;file): [...]]]></description>
			<content:encoded><![CDATA[<p>めんどくさいのでクラスにした簡単なのがありました。</p>
<pre class="brush: java;">
public static void main(String[] args) {
String regex = &quot;\\b(https?|ftp|file)://[-a-zA-Z0-9+&amp;@#/%?=~_|!:,.;]*[-a-zA-Z0-9+&amp;@#/%=~_|]&quot;;
System.out.println(IsMatch(url,regex));
}
private static boolean IsMatch(String s, String pattern) {
 try {
 Pattern patt = Pattern.compile(pattern);
 Matcher matcher = patt.matcher(s);
 return matcher.matches();
 } catch (RuntimeException e) {
 return false;
 }
 }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.infoknows.com/java%e3%81%a7%e6%ad%a3%e8%a6%8f%e8%a1%a8%e7%8f%be%e3%82%92%e4%bd%bf%e3%81%a3%e3%81%a6url%e3%82%92%e3%83%81%e3%82%a7%e3%83%83%e3%82%af/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
