这题是黄巨大出的比赛题.http://poj.org/problem?id=3278DescriptionFarmer John has been informed of the location of a fugitive cow and wants to catch her immediatel...
分类:
其他好文 时间:
2014-06-19 00:58:53
阅读次数:
510
方案1: /// /// 传入URL返回网页的html代码 /// /// URL /// public static string getUrltoHtml(string Url) { errorMsg = ""; try { System.Net.WebRequ...
分类:
Web程序 时间:
2014-06-18 23:26:21
阅读次数:
350
@Test public void test() throws Exception{ //创建输入数据流对象 InputStream In=new FileInputStream("HellWord.txt"); try { //System.out.print((ch...
分类:
编程语言 时间:
2014-06-18 21:39:04
阅读次数:
226
推倒重来俗话说no zuo no die why you try,这时候我又忍不住zuo了,吭哧吭哧的把解决过程发上博客,向全世界宣布,哥又搞定个难题。剧情的发展往往是看起来主角完全掌握了局势的情况下,会突然跳出来一个很牛的反面人物,然后搞得主角很惨,搞的过程中主角开始小宇宙爆发,然后逆袭。这次也不...
分类:
数据库 时间:
2014-06-18 20:34:23
阅读次数:
383
期间遇到了无法转value的值为int型,我採用try catch解决str2 2str1 1str3 3str1 4str4 7str2 5str3 9用的\t隔开,得到结果str1 1,4str2 2,5str3 3,9str4 7我这里map,reduce都是单独出来的类,用了自己定义的key...
分类:
其他好文 时间:
2014-06-18 18:35:21
阅读次数:
184
主线程调用子线程的interrupt()方法,导致子线程抛出InterruptedException, 在子线程中catch这个Exception,不做任何事即可从Sleep状态唤醒线程,继续执行。 如下测试。public class SleepThreadTest { public static ...
分类:
编程语言 时间:
2014-06-18 17:26:12
阅读次数:
523
//上传文件实例if (fileDealer.HasFile)//判断文件是否存在 { string filepath = ""; try { string path = fileDealer.FileName; string filename = path.Split('.')[0] + "_"....
分类:
Web程序 时间:
2014-06-18 15:52:21
阅读次数:
275
try { string msg = this.richTextBox1.Text; string title = "新通知"; string toastMessage = "" + ...
public static void downFile(final String url){
new Thread(){
public void run(){
FileOutputStream os=null;
try{
InputStream input=null;
...
分类:
移动开发 时间:
2014-06-16 20:47:47
阅读次数:
286
#!/bin/bash
echo "try to set 800x600" xrandr -s 8sleep 10echo "try to set 1680x1050"xrandr -s 2sleep 10echo "try to set 1440x900"xrandr -s 4
sleep 10 echo "try to set 1280x1024"xrandr -s 3sleep 10echo...
分类:
其他好文 时间:
2014-06-16 18:55:46
阅读次数:
174