Kenji のすべての投稿

Where did the charity go?


At the top page of today’s Mainichi news paper, a survey conducted by Mainichi newspaper company says the ratio of people who don’t feel things become better is 35%. 44% of people who live in shelter, and 19% who live in their house.

EGASHIRA prevent victims from suffering

Now, where did charity go? It has not been to stricken area, yet. As an assembly member, Masako Mori indicated at House of Councillors session in May 16, most of charity has not given to victims. The government doesn’t give helpful goods, which is gathered by many people, to victims. Also in , the government didn’t destinate 1.9 million batteries, which were given by battery companies for free. Victems are not helped by the government, but people like Mr. Egashira, who send helpful goods by himself using a track on March 20, 2011, help victims.


Expand Partition size (Windows XP)


You can expand or erase a partition size in Windows XP with normally installed software.

But only non-system and NTFS partition with continuous blank space in the disk (or with distanced blank space in dynamic disk).

Well then, 1st, type “diskpart” and press enter in command prompt, and you can see “DISKPART>”. Type “list volume”, and you can see partitions used in your machine, then remember the volume number which you want to extend. 2nd, type “select volume N”(N is the volume number which you remembered). 3rd, type “extend” and press enter, then the volume extended to full size as much as it can be.

If you type “extend size=700″ and press enter, the volume will extend to 700 mega bytes.

This command cannot renounce. So be careful when you use it.


Java: eclipse で APIリファレンスを見る方法


Eclipse Platform API Specification にアクセスすれば、ブラウザからAPIリファレンスを見ることができます。

eclipse で見たい場合は、見たいライブラリをパッケージエクスプローラで選択して右クリックし、プロパティを開きます。 javadoc と左側にあるのを選択して、http://help.eclipse.org/helios/nftopic/org.eclipse.platform.doc.isv/reference/api/ と入力します。

ここで注意が必要なのは、 最後の部分です。 ブラウザからだと index.html と入力しますが、 eclipse ではそこまで書きません。 api/ で終わります。

そして eclipse 上で、 調べたいメソッドの上にカーソルを持っていき、 Shift + F2 を押すとリファレンスが表示されます。

さらに、たとえば SWT というライブラリで定義されている SelectionAdapter のソースを見ようと思ったら、 Ctrl を押しながら マウスで左クリックします。 そして、出てきたウインドウ内の、「ソースの添付」ボタンを押して、アーカイブファイル(.zip)のロケーションを入力します。 すると次回から、 Ctrl + 左クリック で ソースを見ることができます。