<?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>Yukun&#039;s Blog</title>
	<atom:link href="http://www.yukun.info/feed" rel="self" type="application/rss+xml" />
	<link>http://www.yukun.info</link>
	<description>難しいことは分かりやすく、簡単なことは面白く紹介</description>
	<lastBuildDate>Wed, 25 Aug 2010 15:38:18 +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>解決例: 「ファイルから操作とエンティティを取得できません」 - Autoloader.php</title>
		<link>http://www.yukun.info/blog/2010/07/error-require-once-autoloader-php.html</link>
		<comments>http://www.yukun.info/blog/2010/07/error-require-once-autoloader-php.html#comments</comments>
		<pubDate>Sat, 24 Jul 2010 15:00:18 +0000</pubDate>
		<dc:creator>yukun</dc:creator>
				<category><![CDATA[Flex ＆ AIR]]></category>
		<category><![CDATA[Exception]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.yukun.info/?p=1604</guid>
		<description><![CDATA[				
				釈然としない解決法ですが、よければご参照下さい。
				
				事象
				Flex Builder 4でPHPとのデータコネクション設定を行う際に上図のエラーが発生。
				使用したサンプルチ [...]]]></description>
			<content:encoded><![CDATA[				
				<p>釈然としない解決法ですが、よければご参照下さい。</p>
				<p><a href="http://www.yukun.info/wp-content/uploads/error_require_autoloader.png"><img src="http://www.yukun.info/wp-content/uploads/error_require_autoloader-e1279985017921.png" alt="error_require_autoloader" title="error_require_autoloader" width="400" height="160" class="alignleft size-full wp-image-1605" /></a></p>
				<h3>事象</h3>
				<p>Flex Builder 4でPHPとのデータコネクション設定を行う際に上図のエラーが発生。<br />
				使用したサンプルチュートリアル：<br />
				<a href="http://www.adobe.com/devnet/flex/testdrive/articles/1_build_a_flex_app2.html" target="_blank">connect to data - Flex Test Drive | Adobe Developer Connection</a></p>
				<p><em>エラーメッセージ</em></p>
				<pre>
Zend Framework が正しくインストールされていて、プロジェクトの出力フォルダーにある amf_config.ini ファイルでパラメーター "amf.production" が true に設定されていないことを確認してください。
Warning: Error parsing C:\Program Files (x86)\VertrigoServ\www\TestDrive\TestDrive-debug/amf_config.ini on line 5 in C:\Program Files (x86)\VertrigoServ\www\TestDrive\TestDrive-debug\gateway.php on line 12

Warning: require_once(Zend/Loader/Autoloader.php) [function.require-once]: failed to open stream: No such file or directory in C:\Program Files (x86)\VertrigoServ\www\TestDrive\TestDrive-debug\gateway.php on line 27

Fatal error: require_once() [function.require]: Failed opening required 'Zend/Loader/Autoloader.php' (include_path='.;C:\Program Files (x86)\VertrigoServ\Smarty;C:/Program Files/ZendFramework/library') in C:\Program Files (x86)\VertrigoServ\www\TestDrive\TestDrive-debug\gateway.php on line 27
</pre>
				<p><em>amf_config.ini</em></p>
				<pre>
[zend]
;set the absolute location path of webroot directory, example:
;Windows: C:\apache\www
;MAC/UNIX: /user/apache/www
webroot =C:/Program Files (x86)/VertrigoServ/www

;set the absolute location path of zend installation directory, example:
;Windows: C:\apache\PHPFrameworks\ZendFramework\library
;MAC/UNIX: /user/apache/PHPFrameworks/ZendFramework/library
;zend_path =

[zendamf]
amf.production = false
amf.directories[]=TestDrive/services
</pre>
				<p><em>gateway.php</em></p>
				<pre class="brush: php">
&lt;?php
ini_set(&quot;display_errors&quot;, 1);
$dir = dirname(__FILE__);
$webroot = $_SERVER[&#039;DOCUMENT_ROOT&#039;];
$configfile = &quot;$dir/amf_config.ini&quot;;

//default zend install directory
$zenddir = $webroot. &#039;/ZendFramework/library&#039;;

//Load ini file and locate zend directory
if(file_exists($configfile)) {
	$arr=parse_ini_file($configfile,true);
	if(isset($arr[&#039;zend&#039;][&#039;webroot&#039;])){
		$webroot = $arr[&#039;zend&#039;][&#039;webroot&#039;];
		$zenddir = $webroot. &#039;/ZendFramework/library&#039;;
	}
	if(isset($arr[&#039;zend&#039;][&#039;zend_path&#039;])){
		$zenddir = $arr[&#039;zend&#039;][&#039;zend_path&#039;];
	}
}

//
// Setup include path
	//add zend directory to include path
set_include_path(get_include_path().PATH_SEPARATOR.$zenddir);
// Initialize Zend Framework loader
require_once &#039;Zend/Loader/Autoloader.php&#039;;
</pre>
				<p>include_pathの'.;C:\Program Files (x86)\VertrigoServ\Smarty;C:/Program Files/ZendFramework/library'から、'Zend/Loader/Autoloader.php'を開けませんというエラー。</p>
				<p>include_path 先のフォルダ構成を確認すると確かに'Zend/Loader/Autoloader.php'がないのでエラーが発生するのは分かる。</p>
				<h3>解決法</h3>
				<p>amf_config.iniファイル中のwebrootパラメータをコメントアウトすると正常に設定が完了。<br />
				変更前</p>
				<pre>webroot =C:/Program Files (x86)/VertrigoServ/www</pre>
<p>変更後</p>
<pre>;webroot =C:/Program Files (x86)/VertrigoServ/www</pre>
				<h3>原因</h3>
				<p>本来はC:/Program Files (x86)/VertrigoServ/www/ZendFramework/library/Zend/Loader/Autoloader.phpを参照をすべき所を、C:/Program Files/ZendFramework/library/Zend/Loader/Autoloader.phpを参照しようとしてエラーとなった。<br />
				webroot =C:/Program Files (x86)/VertrigoServ/wwwのはずが、どこで書き換わったのかな？</p>
				<p>今回はサンプルを走らせるのを優先したので、原因究明はここで止めています＞＜；</p>
				<h3>追記 - 2010/07/26</h3>
				<p>以下のようなエラーメッセージが出力された場合も、上記の原因と同一である場合があります。</p>
				<p><a href="http://www.yukun.info/wp-content/uploads/error_require_autoloader2.png"><img src="http://www.yukun.info/wp-content/uploads/error_require_autoloader2-e1280153443846.png" alt="error_require_autoloader2" title="error_require_autoloader2" width="400" height="281" class="alignleft size-full wp-image-1618" /></a></p>
				<pre>
Send failed
Channel.Connect.Failed error NetConnection.Call.BadVersion: :
url: 'http://localhost/TestDrive_add_charts_PHP/gateway.php'
</pre>
				<p>ご参考まで。</p>
				<h4>関連記事</h4>
				<ul class="similar-posts">
				<li><a href="http://www.yukun.info/blog/2008/11/php-form-submit-action-post.html" rel="bookmark" title="2008年11月8日">PHP: フォーム情報の送信・受信 - POSTメソッド</a></li>
				<li><a href="http://www.yukun.info/blog/2008/10/php-set-cookie-delete-time.html" rel="bookmark" title="2008年10月31日">PHP: クライアントへのCookieの設定と削除 - setcookie()関数</a></li>
				<li><a href="http://www.yukun.info/blog/2008/12/actionscript-air-async-write-text.html" rel="bookmark" title="2008年12月18日">AIR: テキストファイルに書き込み - openAsync()、writeMultiByte()</a></li>
				<li><a href="http://www.yukun.info/blog/2008/12/actionscript-air-async-read-text.html" rel="bookmark" title="2008年12月17日">AIR: テキストファイルを非同期に読み込む - openAsync()、readMultiByte()</a></li>
				<li><a href="http://www.yukun.info/blog/2008/09/python-read-file-try-except-else-finally.html" rel="bookmark" title="2008年9月18日">Python: ファイル読み込み時の例外の扱い例 - try、except、else、finallyブロック</a></li>
				</ul>
				<p><!-- Similar Posts took 12.234 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yukun.info/blog/2010/07/error-require-once-autoloader-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows7高速化・軽量化Tips</title>
		<link>http://www.yukun.info/blog/2010/06/windows7-speed-up-tips.html</link>
		<comments>http://www.yukun.info/blog/2010/06/windows7-speed-up-tips.html#comments</comments>
		<pubDate>Tue, 15 Jun 2010 14:00:04 +0000</pubDate>
		<dc:creator>yukun</dc:creator>
				<category><![CDATA[開発環境]]></category>
		<category><![CDATA[Setting]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.yukun.info/?p=1580</guid>
		<description><![CDATA[				
				備忘録として以下のWindows7の使用リソースの軽量化設定の手順を簡単に紹介します。
				
				プリフェッチを無効にする
				スーパーフェッチを無効にする
				セキュリティセンター機能 [...]]]></description>
			<content:encoded><![CDATA[				
				<p>備忘録として以下のWindows7の使用リソースの軽量化設定の手順を簡単に紹介します。</p>
				<ol>
				<li>プリフェッチを無効にする</li>
				<li>スーパーフェッチを無効にする</li>
				<li>セキュリティセンター機能の無効</li>
				<li>自動デフラグ停止</li>
				<li>使用しないWindowsの機能のアンインストール</li>
				<li>自動ログオン設定</li>
				</ol>
				<h3>プリフェッチを無効にする</h3>
				<p>レジストリ：HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters<br />
				のEnablePrefetcherの値を0にする。<br />
				<a href="http://www.yukun.info/wp-content/uploads/prefetch_setting.png"><img src="http://www.yukun.info/wp-content/uploads/prefetch_setting-e1276613456325.png" alt="Prefetchの無効化" title="prefetch_setting" width="400" height="242" class="alignleft size-full wp-image-1583" /></a></p>
				<h3>スーパーフェッチを無効にする</h3>
				<p>スタート→コントロールパネル→管理ツール→サービス→Superfetchをダブルクリックし、スタートアップの種類を「無効」に設定し、サービスを停止する。<br />
				<a href="http://www.yukun.info/wp-content/uploads/superfetch_service.png"><img src="http://www.yukun.info/wp-content/uploads/superfetch_service-e1276613509746.png" alt="Superfetchサービス" title="superfetch_service" width="400" height="240" class="alignleft size-full wp-image-1584" /></a></p>
				<p><a href="http://www.yukun.info/wp-content/uploads/superfetch_setting.png"><img src="http://www.yukun.info/wp-content/uploads/superfetch_setting-e1276613593917.png" alt="Superfetchサービスの設定" title="superfetch_setting" width="400" height="363" class="alignleft size-full wp-image-1585" /></a></p>
				<h3>セキュリティセンター機能の無効</h3>
				<p>スタート→コントロールパネル→管理ツール→サービス→Security Centerをダブルクリックし、スタートアップの種類を「無効」に設定し、サービスを停止する。<br />
				<a href="http://www.yukun.info/wp-content/uploads/security_center_service.png"><img src="http://www.yukun.info/wp-content/uploads/security_center_service-e1276613668768.png" alt="Security Centerサービス" title="security_center_service" width="400" height="292" class="alignleft size-full wp-image-1586" /></a></p>
				<h3>自動デフラグ停止</h3>
				<p>スタート→アクセサリ→「ディスク　デフラグ　ツール」からスケジュール設定を無効化する。</p>
				<h3>使用しないWindowsの機能のアンインストール</h3>
				<p>スタート→コントロールパネル→プログラムと機能→Windowsの機能の有効化または無効化をクリック<br />
				<a href="http://www.yukun.info/wp-content/uploads/windows_function_setting.png"><img src="http://www.yukun.info/wp-content/uploads/windows_function_setting-e1276613735346.png" alt="Windowsの機能の有効化または無効化" title="windows_function_setting" width="400" height="276" class="alignleft size-full wp-image-1587" /></a><br />
				ガジェットはバックグラウンドで常駐するので、使用しないのであれば、アンインストールした方が良い。</p>
				<h3>自動ログオン設定</h3>
				<p>スタート→ファイル検索で「netplwiz」を入力→実行<br />
				<a href="http://www.yukun.info/wp-content/uploads/netplwiz_exe.png"><img src="http://www.yukun.info/wp-content/uploads/netplwiz_exe-e1276613774677.png" alt="netplwiz_exe" title="netplwiz_exe" width="400" height="458" class="alignleft size-full wp-image-1588" /></a><br />
				「ユーザーアカウント」画面で下図のチェックボックスをオフにする。<br />
				<a href="http://www.yukun.info/wp-content/uploads/user_account_setting.png"><img src="http://www.yukun.info/wp-content/uploads/user_account_setting-e1276613822371.png" alt="ユーザーアカウント画面" title="user_account_setting" width="400" height="427" class="alignleft size-full wp-image-1589" /></a></p>
				<h4>関連記事</h4>
				<ul class="similar-posts">
				<li><a href="http://www.yukun.info/blog/2009/06/white-list-fiters-spam-mail.html" rel="bookmark" title="2009年6月28日">携帯の迷惑メールフィルタのホワイトリスト（ドメイン）設定例</a></li>
				<li><a href="http://www.yukun.info/blog/2010/04/setup-eclipse-64bit-android.html" rel="bookmark" title="2010年4月25日">Windows7 64bitにEclipseでAndroid開発環境をセットアップ</a></li>
				<li><a href="http://www.yukun.info/blog/2008/01/cygwin-cron.html" rel="bookmark" title="2008年1月8日">Cygwinでcronをインストール</a></li>
				<li><a href="http://www.yukun.info/blog/2008/07/python-regular-expression.html" rel="bookmark" title="2008年7月19日">Python: 正規表現の基本 - メタ文字「.」「^」「$」</a></li>
				<li><a href="http://www.yukun.info/blog/2008/07/python-regular-expression-loop.html" rel="bookmark" title="2008年7月20日">Python: 正規表現の基本 - 繰り返し「*」「+」「?」</a></li>
				</ul>
				<p><!-- Similar Posts took 20.454 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yukun.info/blog/2010/06/windows7-speed-up-tips.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Android: &quot;Unable to open sync connection!&quot; の対処例</title>
		<link>http://www.yukun.info/blog/2010/06/android-unable-to-open-sync-connection.html</link>
		<comments>http://www.yukun.info/blog/2010/06/android-unable-to-open-sync-connection.html#comments</comments>
		<pubDate>Sat, 05 Jun 2010 12:50:41 +0000</pubDate>
		<dc:creator>yukun</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Exception]]></category>

		<guid isPermaLink="false">http://www.yukun.info/?p=1571</guid>
		<description><![CDATA[				
				上記のメッセージはAndroidアプリをEclipseから実機でデバッグする際にDDMS上に出力されたエラーです。
				
[2010-06-05 15:16:21 - pokeca] Failed  [...]]]></description>
			<content:encoded><![CDATA[				
				<p>上記のメッセージはAndroidアプリをEclipseから実機でデバッグする際にDDMS上に出力されたエラーです。</p>
				<pre>
[2010-06-05 15:16:21 - pokeca] Failed to upload pokeca.apk on device '11223344'
[2010-06-05 15:16:21 - pokeca] java.io.IOException 発生: Unable to open sync connection!
[2010-06-05 15:16:21 - pokeca] Launch canceled!
</pre>
				<p>根本原因は不明ですが、対処として下記の手順を試みると解決しました。</p>
				<ol>
				<li>コマンドライン上でadb kill-server</li>
				<li>Android端末の接続を解除する(USBケーブルを抜く)</li>
				<li>コマンドライン上でadb start-server</li>
				<li>Android端末をUSBで再接続する。</li>
				<li>DDMSで端末が正常に接続されているか確認する。</li>
				<li>アプリのデバッグを開始→正常に実行される(OK!)。</li>
				</ol>
				<h3>コマンド</h3>
				<pre>
C:\Users\yukun>adb kill-server

C:\Users\yukun>adb start-server
* daemon not running. starting it now *
* daemon started successfully *

C:\Users\yukun>
</pre>
				<h3>5の実行結果</h3>
				<p><a href="http://www.yukun.info/wp-content/uploads/android_usb_connection_ddms.png"><img src="http://www.yukun.info/wp-content/uploads/android_usb_connection_ddms-e1275743121420.png" alt="Android端末のUSB接続確認" title="android_usb_connection_ddms" width="400" height="321" class="alignleft size-full wp-image-1572" /></a></p>
				<h3>参考サイト</h3>
				<ul>
				<li><a href="http://www.anddev.org/viewtopic.php?p=25992" target="_blank">anddev.org • View topic - Unable to open sync connection!</a></li>
				<li><a href="http://groups.google.com/group/android-developers/browse_thread/thread/5c9b33eb9373327f/855678061310c285?lnk=raot" target="_blank">G1 detected as 'offline' by Eclipse plugin - Android Developers | Google グループ</a></li>
				</ul>
				<h4>関連記事</h4>
				<ul class="similar-posts">
				<li><a href="http://www.yukun.info/blog/2010/04/setup-eclipse-64bit-android.html" rel="bookmark" title="2010年4月25日">Windows7 64bitにEclipseでAndroid開発環境をセットアップ</a></li>
				<li><a href="http://www.yukun.info/blog/2010/01/android-draw-image-resources.html" rel="bookmark" title="2010年1月2日">Android: リソースの画像ファイルの拡大・縮小描画 - drawBitmap()</a></li>
				<li><a href="http://www.yukun.info/blog/2010/03/android-mksdcard-could-not-create-file-aborting.html" rel="bookmark" title="2010年3月14日">Android: mksdcardコマンドのabortingの解決法 - could not create file '...', aborting...</a></li>
				<li><a href="http://www.yukun.info/blog/2008/10/android-integer-to-binary-string.html" rel="bookmark" title="2008年10月29日">Android: 10進数→2進数変換アプリ</a></li>
				<li><a href="http://www.yukun.info/blog/2010/03/java-no-suitable-driver-found.html" rel="bookmark" title="2010年3月24日">Java, Servlet: No suitable driver found for "～" の原因と解決法</a></li>
				</ul>
				<p><!-- Similar Posts took 23.513 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yukun.info/blog/2010/06/android-unable-to-open-sync-connection.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java: インターフェースとローカルのIPv6, IPv4アドレスの取得 - NetworkInterfaceクラス</title>
		<link>http://www.yukun.info/blog/2010/05/java-networkinterface-ipv6-ipv4.html</link>
		<comments>http://www.yukun.info/blog/2010/05/java-networkinterface-ipv6-ipv4.html#comments</comments>
		<pubDate>Sun, 16 May 2010 10:30:59 +0000</pubDate>
		<dc:creator>yukun</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Socket]]></category>

		<guid isPermaLink="false">http://www.yukun.info/?p=1561</guid>
		<description><![CDATA[				
				下記のコードはネットワークインターフェース情報取得し、IPv6とIPv4のアドレスを取得、表示するサンプルコードです。
				ソースコード
				
import java.net.Inet4Addr [...]]]></description>
			<content:encoded><![CDATA[				
				<p>下記のコードはネットワークインターフェース情報取得し、IPv6とIPv4のアドレスを取得、表示するサンプルコードです。</p>
				<h3>ソースコード</h3>
				<pre class="brush: java">
import java.net.Inet4Address;
import java.net.Inet6Address;
import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.HashMap;

/**
 * ネットワークインターフェースの取得
 */
public class InetAddressesInfo {
  private HashMap&lt;NetworkInterface, ArrayList&lt;InetAddress&gt;&gt; interfaceMap;

  public InetAddressesInfo() {
    interfaceMap = new HashMap&lt;NetworkInterface, ArrayList&lt;InetAddress&gt;&gt;();
  }

  public void getInterfaces() {
    interfaceMap.clear();
    try {
      Enumeration&lt;NetworkInterface&gt; interfaceList = NetworkInterface.getNetworkInterfaces();
      if (interfaceList == null) {
        System.out.println(&quot;Message: No interfaces found&quot;);
      } else {
        while (interfaceList.hasMoreElements()) {
          NetworkInterface iface = interfaceList.nextElement();
          Enumeration&lt;InetAddress&gt; addrList = iface.getInetAddresses();
          if (!addrList.hasMoreElements()) continue;
          ArrayList&lt;InetAddress&gt; iaddress = new ArrayList&lt;InetAddress&gt;();
          while (addrList.hasMoreElements())
            iaddress.add(addrList.nextElement());
          interfaceMap.put(iface, iaddress);
        }
      }
    } catch (SocketException se) {
      System.out.println(&quot;Error getting network interfaces: &quot; + se.getMessage());
    }
  }

  public void show() {
    for (NetworkInterface n : interfaceMap.keySet()) {
      System.out.println(&quot;Interface &quot; + n.getName() + &quot;: &quot;);
      for (InetAddress a : interfaceMap.get(n)) {
        System.out.print(&quot;\tAddress &quot; + ((a instanceof Inet4Address ? &quot;(IPv4)&quot;
            : (a instanceof Inet6Address ? &quot;(IPv6)&quot; : &quot;(?)&quot;))));
        System.out.println(&quot;: &quot; + a.getHostAddress());
      }
    }
  }

  public HashMap&lt;NetworkInterface, ArrayList&lt;InetAddress&gt;&gt; getInterfaceMap() {
    return interfaceMap;
  }

  public void setInterfaceMap(
      HashMap&lt;NetworkInterface, ArrayList&lt;InetAddress&gt;&gt; interfaceMap) {
    this.interfaceMap = interfaceMap;
  }

  public static void main(String[] args) {
    InetAddressesInfo i =  new InetAddressesInfo();
    i.getInterfaces();
    i.show();
  }

}
</pre>
				<h3>実行結果</h3>
				<pre>
Interface lo:
	Address (IPv6): 0:0:0:0:0:0:0:1
	Address (IPv4): 127.0.0.1
Interface net4:
	Address (IPv6): fe80:0:0:0:0:5efe:c0a8:10a%12
Interface net5:
	Address (IPv6): 2001:0:4137:9e76:8ae:1cf7:3f57:fef5
	Address (IPv6): fe80:0:0:0:8ae:1cf7:3f57:fef5%13
Interface eth3:
	Address (IPv6): 2001:c90:33d:21d4:919c:836b:2d1a:cf33
	Address (IPv6): 2001:c90:33d:21d4:8856:aef1:d0bd:db64
	Address (IPv6): fe80:0:0:0:919c:836b:2d1a:cf33%11
	Address (IPv4): 192.168.1.10
</pre>
				<h3>ドキュメント</h3>
				<p>・<a href="http://java.sun.com/javase/ja/6/docs/ja/api/java/net/NetworkInterface.html" target="_blank">NetworkInterface (Java Platform SE 6)</a></p>
				<h4>関連記事</h4>
				<ul class="similar-posts">
				<li><a href="http://www.yukun.info/blog/2008/10/java-inetaddress-getlocalhost.html" rel="bookmark" title="2008年10月30日">Java: ローカルホスト名とIPアドレスを取得 - InetAddress.getLocalHost()メソッド</a></li>
				<li><a href="http://www.yukun.info/blog/2008/12/actionscript-air-url-socket-monitor.html" rel="bookmark" title="2008年12月24日">AIR: Webサーバ、Socketの接続状況を検知 - URLMonitor、SocketMonitorクラス</a></li>
				<li><a href="http://www.yukun.info/blog/2008/03/java-ngram.html" rel="bookmark" title="2008年3月7日">検索エンジンを実装 (1)転置インデックス作成</a></li>
				<li><a href="http://www.yukun.info/blog/2008/05/java-excite-translation.html" rel="bookmark" title="2008年5月16日">JavaプログラムからExcite翻訳を利用</a></li>
				<li><a href="http://www.yukun.info/blog/2008/03/diff-java-ruby-string.html" rel="bookmark" title="2008年3月4日">JavaとRubyで文字列の終端の扱いの違い</a></li>
				</ul>
				<p><!-- Similar Posts took 18.728 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yukun.info/blog/2010/05/java-networkinterface-ipv6-ipv4.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Many interrupted jobs</title>
		<link>http://www.yukun.info/blog/2010/05/many-interrupted-jobs.html</link>
		<comments>http://www.yukun.info/blog/2010/05/many-interrupted-jobs.html#comments</comments>
		<pubDate>Thu, 06 May 2010 14:00:05 +0000</pubDate>
		<dc:creator>yukun</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Days]]></category>

		<guid isPermaLink="false">http://www.yukun.info/?p=1524</guid>
		<description><![CDATA[Whilst I was working in the office today, I was asked to work jobs intermittently by colleagues and business partners. In order to finish the jobs effectively, I prioritize them. After that, I start completing them in order. This article was corrected by Satelle in Lang-8. Thank you very much. 関連記事 I Explained the Book [...]]]></description>
			<content:encoded><![CDATA[				
				<p>Whilst I was working in the office today, I was asked to work jobs intermittently by colleagues and business partners. In order to finish the jobs effectively, I prioritize them. After that, I start completing them in order.</p>
				<p><em>This article was corrected by <a href="http://lang-8.com/149258" target="_blank">Satelle</a> in Lang-8. Thank you very much.</em></p>
				<h4>関連記事</h4>
				<ul class="similar-posts">
				<li><a href="http://www.yukun.info/blog/2007/03/explained-book.html" rel="bookmark" title="2007年3月3日">I Explained the Book in English</a></li>
				<li><a href="http://www.yukun.info/blog/2007/02/trajectory.html" rel="bookmark" title="2007年2月23日">Books, the Trajectory of Having Traced Life</a></li>
				<li><a href="http://www.yukun.info/blog/2007/02/stance-in-society.html" rel="bookmark" title="2007年2月24日">My Stance in Society</a></li>
				<li><a href="http://www.yukun.info/blog/2007/02/the-quick-response.html" rel="bookmark" title="2007年2月27日">The Quick Response</a></li>
				<li><a href="http://www.yukun.info/blog/2006/07/that-and-this.html" rel="bookmark" title="2006年7月12日">I want to do that and this</a></li>
				</ul>
				<p><!-- Similar Posts took 27.690 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yukun.info/blog/2010/05/many-interrupted-jobs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows7 64bitにEclipseでAndroid開発環境をセットアップ</title>
		<link>http://www.yukun.info/blog/2010/04/setup-eclipse-64bit-android.html</link>
		<comments>http://www.yukun.info/blog/2010/04/setup-eclipse-64bit-android.html#comments</comments>
		<pubDate>Sat, 24 Apr 2010 23:30:01 +0000</pubDate>
		<dc:creator>yukun</dc:creator>
				<category><![CDATA[開発環境]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Setting]]></category>

		<guid isPermaLink="false">http://www.yukun.info/?p=1499</guid>
		<description><![CDATA[				
				実は今までMac Bookに外部ディスプレイとキーボードを接続してデスクトップで開発していたのですが、Androidのエミュレータを起動していると地味に負荷が連続的にかかって発熱がひどくなってきたので、 [...]]]></description>
			<content:encoded><![CDATA[				
				<p>実は今までMac Bookに外部ディスプレイとキーボードを接続してデスクトップで開発していたのですが、Androidのエミュレータを起動していると地味に負荷が連続的にかかって発熱がひどくなってきたので、この度、Windows7 64bitのデスクトップPCを買いました。その際のAndroid開発環境のセットアップ手順を以下に紹介します。</p>
				<h3>Java 環境のインストール</h3>
				<p>下記サイトよりJDKをダウンロード＆インストール。<br />
				<a href="http://java.sun.com/javase/ja/6/download.html">Java SE ダウンロード - Sun Developer Network (SDN)</a><br />
				<a href="http://www.yukun.info/wp-content/uploads/jdk_download.png"><img src="http://www.yukun.info/wp-content/uploads/jdk_download.png" alt="JDK Download 画面" title="jdk_download" width="272" height="307" class="alignleft size-full wp-image-1501" /></a><br />
				ダウンロードするファイルはWindows x64 と Windows の二つ。それぞれインストールする。<br />
				64bit版 はProgram Filesフォルダに、32bit版はProgram Files (x86) フォルダにインストールされる。</p>
				<pre>
C:\>java -version
java version "1.6.0_20"
Java(TM) SE Runtime Environment (build 1.6.0_20-b02)
Java HotSpot(TM) 64-Bit Server VM (build 16.3-b01, mixed mode)
</pre>
				<h3>Android SDK のインストール</h3>
				<p>下記サイトよりダウンロードする。<br />
				<a href="http://developer.android.com/sdk/index.html">Android SDK | Android Developers</a><br />
				解凍後 SDK Setup.exe を実行する。その際に下記のようなエラーが発生した場合は、<br />
				画面左部のSettingsからチェックボックス Force https://... sources to be fetched using http;//... をチェックし、使用したいSDK Versionをインストールする。</p>
				<pre>
Failed to fetch URL https://dl-ssl.google.com/android/repository/repository.xml, reason: HTTPS SSL error. You might want to force download through HTTP in the settings.
</pre>
				<h3>Eclipse 64bit版のインストール</h3>
				<p>下記サイトよりダウンロードする。<br />
				<a href="http://download.eclipse.org/eclipse/downloads/">Eclipse Project Downloads</a><br />
				現在の最新バージョンのリンクをクリックすると下記ページに遷移。<br />
				<a href="http://download.eclipse.org/eclipse/downloads/drops/R-3.5.2-201002111343/index.php">Eclipse Project</a><br />
				画面中部の「Windows (x86_64)」が64bit版Eclipseなので、クリックしてダウンロード。</p>
				<p><em>追記(2010-04-26)</em>：上記の手順の中で32bit版のJDK(with JRE)をインストールしているならば、下記の日本語版Eclipse(32bit版)を使用してもよい(ちなみに私はこの方法を採った)。<br />
				<a href="http://mergedoc.sourceforge.jp/">Pleiades - Eclipse プラグイン日本語化プラグイン</a></p>
				<h3>Android Development Tools のインストール</h3>
				<p><a href="http://www.yukun.info/wp-content/uploads/android_dev_tools_plugin.png"><img src="http://www.yukun.info/wp-content/uploads/android_dev_tools_plugin-e1272172708275.png" alt="Android Development Tools" title="android_dev_tools_plugin" width="400" height="308" class="alignleft size-full wp-image-1502" /></a><br />
				Eclipse のプラグインインストール画面で下記のURLを追加し、インストールする。<br />
				<strong>https://dl-ssl.google.com/android/eclipse/</strong></p>
				<h4>関連記事</h4>
				<ul class="similar-posts">
				<li><a href="http://www.yukun.info/blog/2010/06/android-unable-to-open-sync-connection.html" rel="bookmark" title="2010年6月5日">Android: "Unable to open sync connection!" の対処例</a></li>
				<li><a href="http://www.yukun.info/blog/2010/03/java-install-sen-windows.html" rel="bookmark" title="2010年3月25日">Java: 形態素解析Senをインストール(Windows編)</a></li>
				<li><a href="http://www.yukun.info/blog/2008/01/amateras-uml.html" rel="bookmark" title="2008年1月4日">JavaのソースコードからUMLのクラス図を作成</a></li>
				<li><a href="http://www.yukun.info/blog/2008/01/eclipse-cdt.html" rel="bookmark" title="2008年1月11日">Eclipse+CDTを用いてプロジェクトを作成する際の注意点</a></li>
				<li><a href="http://www.yukun.info/blog/2010/01/android-draw-image-resources.html" rel="bookmark" title="2010年1月2日">Android: リソースの画像ファイルの拡大・縮小描画 - drawBitmap()</a></li>
				</ul>
				<p><!-- Similar Posts took 23.742 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yukun.info/blog/2010/04/setup-eclipse-64bit-android.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java: ServletからJSPへリクエストをフォワード</title>
		<link>http://www.yukun.info/blog/2010/03/java-servlet-jsp-request-forward.html</link>
		<comments>http://www.yukun.info/blog/2010/03/java-servlet-jsp-request-forward.html#comments</comments>
		<pubDate>Thu, 25 Mar 2010 15:00:01 +0000</pubDate>
		<dc:creator>yukun</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[JSP]]></category>
		<category><![CDATA[Servlet]]></category>

		<guid isPermaLink="false">http://www.yukun.info/?p=1472</guid>
		<description><![CDATA[				
				目的
				Servletで処理した結果をJSPファイルに転送し、HTMLを生成する。これによって、MVCモデルにおけるViewの分離ができる。
				方法
				
protected void  [...]]]></description>
			<content:encoded><![CDATA[				
				<h3>目的</h3>
				<p>Servletで処理した結果をJSPファイルに転送し、HTMLを生成する。これによって、MVCモデルにおけるViewの分離ができる。</p>
				<h3>方法</h3>
				<pre class="brush: java">
protected void doGet(HttpServletRequest req, HttpServletResponse res)
	throws ServletException, IOException {
	ArrayList&lt;String[]&gt; table = new ArrayList&lt;String[]&gt;(); // 転送データ
＜中略＞
	req.setAttribute(&quot;table&quot;, table);
	req.getRequestDispatcher(&quot;jsp/view.jsp&quot;).forward(req, res);
</pre>
				<p>上記のServletコード上のtableという変数をview.jspに渡したす場合、HttpServletRequest #setAttributeで変数を登録し、getRequestDispatcherとforwardでリクエストをフォワードする。</p>
				<p>JSP側で登録した変数を取り出すには、下記のコードを用いる。</p>
				<pre class="brush: java">
&lt;% ArrayList&lt;String[]&gt; table = (ArrayList&lt;String[]&gt;)request.getAttribute(&quot;table&quot;); %&gt;
</pre>
				<h4>関連記事</h4>
				<ul class="similar-posts">
				<li><a href="http://www.yukun.info/blog/2010/03/java-no-suitable-driver-found.html" rel="bookmark" title="2010年3月24日">Java, Servlet: No suitable driver found for "～" の原因と解決法</a></li>
				<li><a href="http://www.yukun.info/blog/2009/02/java-jsp-gregoriancalendar-period.html" rel="bookmark" title="2009年2月23日">Java, JSP: 現在時刻が指定期間内か判定する - GregorianCalendar#before、after</a></li>
				<li><a href="http://www.yukun.info/blog/2009/03/java-observe-event-model-view.html" rel="bookmark" title="2009年3月17日">Java: イベント駆動によるModelとViewの分離 - Observer パターン</a></li>
				<li><a href="http://www.yukun.info/blog/2008/10/android-integer-to-binary-string.html" rel="bookmark" title="2008年10月29日">Android: 10進数→2進数変換アプリ</a></li>
				<li><a href="http://www.yukun.info/blog/2010/05/java-networkinterface-ipv6-ipv4.html" rel="bookmark" title="2010年5月16日">Java: インターフェースとローカルのIPv6, IPv4アドレスの取得 - NetworkInterfaceクラス</a></li>
				</ul>
				<p><!-- Similar Posts took 14.551 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yukun.info/blog/2010/03/java-servlet-jsp-request-forward.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java: 形態素解析Senをインストール(Windows編)</title>
		<link>http://www.yukun.info/blog/2010/03/java-install-sen-windows.html</link>
		<comments>http://www.yukun.info/blog/2010/03/java-install-sen-windows.html#comments</comments>
		<pubDate>Thu, 25 Mar 2010 11:00:02 +0000</pubDate>
		<dc:creator>yukun</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Sen]]></category>
		<category><![CDATA[Setting]]></category>

		<guid isPermaLink="false">http://www.yukun.info/?p=1470</guid>
		<description><![CDATA[				
				ダウンロードするソフト
				1.ActivePerl(ActivePerl, Download Perl for Windows, Mac, Linux, AIX, HP-UX &#38; Sola [...]]]></description>
			<content:encoded><![CDATA[				
				<h3>ダウンロードするソフト</h3>
				<p>1.ActivePerl(<a href="http://www.activestate.com/activeperl/">ActivePerl, Download Perl for Windows, Mac, Linux, AIX, HP-UX &amp; Solaris</a>)<br />
				2.Apache Ant(<a href="http://ant.apache.org/bindownload.cgi">Apache Ant - Binary Distributions</a>)<br />
				3.Sen(<a href="https://sen.dev.java.net/servlets/ProjectDocumentList?folderID=755&amp;expandFolder=755&amp;folderID=0">sen: ドキュメント &amp; ファイル: release</a>)</p>
				<p>ActivePerlはインストーラーに従いインストールする。<br />
				ダウンロードしたAntとSenはC:\work以下に解凍し、フォルダ名をそれぞれapache-ant、senとリネームする。</p>
				<h3>環境変数の設定</h3>
				<p>PATH(追加)	C:\work\apache-ant\bin;<br />
				ANT_HOME	C:\work\apache-ant<br />
				SEN_HOME	C:\work\sen<br />
				JAVA_HOME	C:\Sun\SDK\jdk<br />
				この後、上記の環境変数が適応されているか下記のコマンドを用いて確認する。</p>
				<pre>
C:\>echo %ANT_HOME%
C:\work\apache-ant (←OK、パスが適応されている)
</pre>
				<p>適応されていなければ再起動する。</p>
				<h3>辞書のインストール方法</h3>
				<p>カレントディレクトリをdicに設定後、辞書をインストールする。</p>
				<pre>
C:\>cd work/sen/dic (←カレントディレクトリを移動)
C:\work\sen\dic>ant -Dperl.bin=C:\Perl\bin\perl.exe (←辞書のインストール)
Buildfile: C:\work\sen\dic\build.xml
＜中略＞
BUILD SUCCESSFUL
Total time: 1 minute 2 seconds
C:\work\sen\dic>
</pre>
				<h3>動作確認</h3>
				<p>%SEN_HOME%\sen.batをダブルクリックする。</p>
				<pre>
C:\work\sen\bin>rem set classpath
C:\work\sen\bin>SET CLASSPATH=C:\work\sen\lib\sen.jar
C:\work\sen\bin>SET CLASSPATH=C:\work\sen\lib\sen.jar;C:\work\sen\lib\commons-logging.jar
done.
Please input Japanese sentence:
2010/03/25 0:29:44 net.java.sen.Dictionary <init>
情報: token file = C:\work\sen\dic/token.sen
2010/03/25 0:29:44 net.java.sen.Dictionary <init>
情報: time to load posInfo file = 16[ms]
2010/03/25 0:29:44 net.java.sen.Dictionary <init>
情報: double array trie dictionary = C:\work\sen\dic/da.sen
2010/03/25 0:29:44 net.java.sen.util.DoubleArrayTrie load
情報: loading double array trie dict = C:\work\sen\dic/da.sen
2010/03/25 0:29:45 net.java.sen.util.DoubleArrayTrie load
情報: loaded time = 0.453[ms]
2010/03/25 0:29:45 net.java.sen.Dictionary <init>
情報: pos info file = C:\work\sen\dic/posInfo.sen
2010/03/25 0:29:45 net.java.sen.Dictionary <init>
情報: time to load pos info file = 0[ms]
2010/03/25 0:29:45 net.java.sen.Tokenizer loadConnectCost
情報: connection file = C:\work\sen\dic\matrix.sen
2010/03/25 0:29:45 net.java.sen.Tokenizer loadConnectCost
情報: time to load connect cost file = 141[ms]
hello
hello   (hello) 未知語(0,5,5)   null    null
こんにちは
こんにちは      (こんにちは)    感動詞(0,5,5)   コンニチハ      コンニチワ
</pre>
				<h4>関連記事</h4>
				<ul class="similar-posts">
				<li><a href="http://www.yukun.info/blog/2010/04/setup-eclipse-64bit-android.html" rel="bookmark" title="2010年4月25日">Windows7 64bitにEclipseでAndroid開発環境をセットアップ</a></li>
				<li><a href="http://www.yukun.info/blog/2008/01/cygwin-cron.html" rel="bookmark" title="2008年1月8日">Cygwinでcronをインストール</a></li>
				<li><a href="http://www.yukun.info/blog/2008/01/amateras-uml.html" rel="bookmark" title="2008年1月4日">JavaのソースコードからUMLのクラス図を作成</a></li>
				<li><a href="http://www.yukun.info/blog/2008/09/fedora-yum-install-gnome.html" rel="bookmark" title="2008年9月15日">FedoraにGUI環境GNOMEをyumでインストール</a></li>
				<li><a href="http://www.yukun.info/blog/2009/02/netbeans-subversion-import-error.html" rel="bookmark" title="2009年2月12日">NetBeans から Subversion でコミットをする際のエラーの解決法の一例</a></li>
				</ul>
				<p><!-- Similar Posts took 18.128 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yukun.info/blog/2010/03/java-install-sen-windows.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java, Servlet: No suitable driver found for &quot;～&quot; の原因と解決法</title>
		<link>http://www.yukun.info/blog/2010/03/java-no-suitable-driver-found.html</link>
		<comments>http://www.yukun.info/blog/2010/03/java-no-suitable-driver-found.html#comments</comments>
		<pubDate>Tue, 23 Mar 2010 15:00:32 +0000</pubDate>
		<dc:creator>yukun</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Exception]]></category>
		<category><![CDATA[Servlet]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.yukun.info/?p=1467</guid>
		<description><![CDATA[				
				事象 - NullPointerException on java.sql.Connection
				JDBCを用いてServletからMySQLのテーブルへアクセスする過程で、DriverMana [...]]]></description>
			<content:encoded><![CDATA[				
				<h3>事象 - NullPointerException on java.sql.Connection</h3>
				<p>JDBCを用いてServletからMySQLのテーブルへアクセスする過程で、DriverManager.getConnectionメソッドの呼び出しの後、NullPointerExceptionが送出された(アプリケーション・サーバーはTomcat)。</p>
				<pre class="brush: java">
＜前略＞
Connection conn = null;
    try {
      conn = DriverManager.getConnection(URL, USER, PASS);
      Statement stmt = conn.createStatement();
      ResultSet rs = stmt.executeQuery(&quot;&lt;SQL文&gt;&quot;);
＜後略＞
</pre>
				<p><a href="http://www.yukun.info/wp-content/uploads/tomcat_error_nullpointer-e1269499672856.png"><img src="http://www.yukun.info/wp-content/uploads/tomcat_error_nullpointer-e1269499672856.png" alt="tomcat_error_nullpointer" title="tomcat_error_nullpointer" width="400" height="304" class="alignleft size-full wp-image-1471" /></a></p>
				<h3>原因 - No suitable driver found for "～"</h3>
				<p>デバックトレースを行ったところ、No suitable driver found for "～"というメッセージが出力されていた。JDBC Driver のクラスパスを設定していなかった為、今回のエラーが発生した。</p>
				<h3>対策 - JDBC Driverのクラスパス設定</h3>
				<p>JDBC Driver ファイル(.jar)をクラスパスに追加する。Eclipse上での設定方法は「実行」→「実行の構成」から「クラスパス」タブ内の「ユーザー・エントリー」を選択、「外部JARの追加」ボタンから、Driverを設定する。</p>
				<h3>雑感</h3>
				<p>ありがちー、なミスをしてしまったー。</p>
				<h4>関連記事</h4>
				<ul class="similar-posts">
				<li><a href="http://www.yukun.info/blog/2008/09/cause-java-io-stream-corrupted-exception.html" rel="bookmark" title="2008年9月4日">java.io.StreamCorruptedExceptionが発生した原因とその解決策の一例</a></li>
				<li><a href="http://www.yukun.info/blog/2008/05/out-of-memory-error.html" rel="bookmark" title="2008年5月8日">java.lang.OutOfMemoryErrorが発生する原因とその解決法の一例</a></li>
				<li><a href="http://www.yukun.info/blog/2010/03/java-servlet-jsp-request-forward.html" rel="bookmark" title="2010年3月26日">Java: ServletからJSPへリクエストをフォワード</a></li>
				<li><a href="http://www.yukun.info/blog/2008/01/amateras-uml.html" rel="bookmark" title="2008年1月4日">JavaのソースコードからUMLのクラス図を作成</a></li>
				<li><a href="http://www.yukun.info/blog/2008/03/diff-java-ruby-string.html" rel="bookmark" title="2008年3月4日">JavaとRubyで文字列の終端の扱いの違い</a></li>
				</ul>
				<p><!-- Similar Posts took 13.606 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yukun.info/blog/2010/03/java-no-suitable-driver-found.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android: mksdcardコマンドのabortingの解決法 - could not create file &#039;...&#039;, aborting...</title>
		<link>http://www.yukun.info/blog/2010/03/android-mksdcard-could-not-create-file-aborting.html</link>
		<comments>http://www.yukun.info/blog/2010/03/android-mksdcard-could-not-create-file-aborting.html#comments</comments>
		<pubDate>Sun, 14 Mar 2010 13:30:29 +0000</pubDate>
		<dc:creator>yukun</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.yukun.info/?p=1464</guid>
		<description><![CDATA[				
				下記のコマンドを入力したら、abortされてしまった。
				
C:\>mksdcard 256M C:\work\sdcard\sdcard.img
could not create file 'C [...]]]></description>
			<content:encoded><![CDATA[				
				<p>下記のコマンドを入力したら、abortされてしまった。</p>
				<pre>
C:\>mksdcard 256M C:\work\sdcard\sdcard.img
could not create file 'C:\work\sdcard\sdcard.img', aborting...
</pre>
				<p>原因はフォルダsdcardを作成してなかった為。SDカードイメージの作成先のフォルダは予め作っておく必要がある。<br />
				フォルダ作成後改めてコマンドを入力すると上手くいった。</p>
				<pre>
C:\>mksdcard 256M C:\work\sdcard\sdcard.img

C:\>
</pre>
				<h4>関連記事</h4>
				<ul class="similar-posts">
				<li><a href="http://www.yukun.info/blog/2010/06/android-unable-to-open-sync-connection.html" rel="bookmark" title="2010年6月5日">Android: "Unable to open sync connection!" の対処例</a></li>
				<li><a href="http://www.yukun.info/blog/2010/04/setup-eclipse-64bit-android.html" rel="bookmark" title="2010年4月25日">Windows7 64bitにEclipseでAndroid開発環境をセットアップ</a></li>
				<li><a href="http://www.yukun.info/blog/2010/01/android-draw-image-resources.html" rel="bookmark" title="2010年1月2日">Android: リソースの画像ファイルの拡大・縮小描画 - drawBitmap()</a></li>
				<li><a href="http://www.yukun.info/blog/2008/10/android-integer-to-binary-string.html" rel="bookmark" title="2008年10月29日">Android: 10進数→2進数変換アプリ</a></li>
				<li><a href="http://www.yukun.info/blog/2008/01/euc-to-utf8.html" rel="bookmark" title="2008年1月12日">Linuxコマンドで複数ファイルの文字コードを一括変換</a></li>
				</ul>
				<p><!-- Similar Posts took 13.533 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.yukun.info/blog/2010/03/android-mksdcard-could-not-create-file-aborting.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
