zoukankan      html  css  js  c++  java
  • 使用Windows Live Writer撰写的第一篇博文

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

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

    image

  • 相关阅读:
    数据持久化
    计算机中的上下文
    URL
    MVC之Control中使用AOP
    富客户端
    一些术语的解释
    docker mysql 安装
    用C#开发Windows服务
    java 图片文件Base64编码与二进制编码格式互相转换
    Camera打开前置摄像头或后置摄像头
  • 原文地址:https://www.cnblogs.com/yescoolfan/p/3462189.html
Copyright © 2011-2022 走看看