您的位置:首页 > 其它

使用Windows Live Writer撰写的第一篇博文

2013-12-06 22:03 232 查看
一直没有时间,在自己的电脑上配置起来Windows Live Writer。

今天抽时间搞起来后,感觉果然比在Web版写作不知道爽多少倍哦。

还安装了代码插件,上传代码和图片也方便了很多,霸气。

先上传一小段使用java,通过代理访问网络的样例代码看看,其中有惊喜哦。O(∩_∩)O~

public void invoke() {
try {

System.getProperties().setProperty("proxySet", "true");
System.getProperties().put("proxyHost", "10.77.148.124");
System.getProperties().put("proxyPort", "3128");

URL myURL = new URL(
"http://91sp.vido.ws/getfile.php?VID=53861&mp4=0&seccode=b5b545d152ccb1525bdad01af1c20e01&max_vid=54847");
URLConnection yc = myURL.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(yc
.getInputStream()));
String inputLine;

Set<String> linkSet = new HashSet<String>();

while ((inputLine = in.readLine()) != null) {
System.out.println(inputLine);
Matcher m = p.matcher(inputLine);
while (m.find()) {
System.out.println(m.group());
linkSet.add(m.group());
}
}
in.close();

for (String strUrl : linkSet) {
getFile(strUrl);
}

} catch (Exception e) {
e.printStackTrace();
} finally {
}
}


在插入一张图片,祝大家天天开心:



内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: