一直没有时间,在自己的电脑上配置起来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 {
        }
    }

 

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

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

相关文章:

  • 2022-12-23
  • 2021-10-11
  • 2021-12-16
  • 2021-08-31
  • 2022-12-23
  • 2021-05-11
  • 2021-06-20
  • 2021-06-22
猜你喜欢
  • 2021-09-03
  • 2021-05-20
  • 2022-03-07
  • 2021-09-08
  • 2022-12-23
  • 2021-06-15
  • 2021-05-31
相关资源
相似解决方案