码迷,mamicode.com
首页 > 移动开发 > 详细

Android开发帮助文档Doc打开速度慢解决_Python篇

时间:2015-02-05 09:36:45      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:python   android   开发文档   帮助文档   打开速度慢   

解决android帮助文档打开慢


网友说是因为Doc目录下的html文件里含有访问google的js文件

<link rel="stylesheet"
href="http://fonts.googleapis.com/css?family=Roboto:regular,medium,thin,italic,mediumitalic,bold" title="roboto">

 <script src="http://www.google.com/jsapi" type="text/javascript"></script>
经查的确如此。

由于这两行脚本需在线访问Google,显然后续内容的加载就会很慢慢慢慢......

咋办呢?

将每个目录下的.html文件都打开手动删除上边两行内容?一定会删到技术分享 疼。有人建议:

方法一:修改Hosts文件

这样解决,修改C:\WINDOWS\system32\drivers\etc目录下的hosts文件里添加

127.0.0.1 fonts.googleapis.com
127.0.0.1 www.google.com
127.0.0.1 www.google.com/jsapi
127.0.0.1 www.google-analytics.com
127.0.0.1 apis.google.com/js/

速度会提升很多。

方法二:编写Java程序批量注释

遍历doc目录下的所有文件,将每个文件的上边两行内容删除,参考

/*
 * 去掉Android文档中需要联网的javascript代码
 */
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;

public class FormatDoc {
    public static int j=1;
    /**
     * @param args
     */
    public static void main(String[] args) {
        
        File file = new File("D:/android/android-sdk-windows/docs/");
        searchDirectory(file, 0);
        System.out.println("OVER");
    }

    public static void searchDirectory(File f, int depth) {
        if (!f.isDirectory()) {
            String fileName = f.getName();
            if (fileName.matches(".*.{1}html")) {
                String src= "<(link rel)[=]\"(stylesheet)\"\n(href)[=]\"(http)://(fonts.googleapis.com/css)[?](family)[=](Roboto)[:](regular,medium,thin,italic,mediumitalic,bold)\"( title)[=]\"roboto\">";
                String src1 = "<script src=\"http://www.google.com/jsapi\" type=\"text/javascript\"></script>";
                String dst = "";
                //如果是html文件则注释掉其中的特定javascript代码
                annotation(f, src, dst);
                annotation(f, src1, dst);
            }
        } else {
            File[] fs = f.listFiles();
            depth++;
            for (int i = 0; i < fs.length; ++i) {
                File file = fs[i];
                searchDirectory(file, depth);
            }
        }
    }

    /*
     * f 将要修改其中特定内容的文件 
     * src 将被替换的内容 
     * dst 将被替换层的内容
     */
    public static void annotation(File f, String src, String dst) {
        String content = FormatDoc.read(f);
        content = content.replaceFirst(src, dst);
        int ll=content.lastIndexOf(src);
        System.out.println(ll);
        FormatDoc.write(content, f);
        System.out.println(j++);
        return;

    }

    public static String read(File src) {
        StringBuffer res = new StringBuffer();
        String line = null;
        try {
            BufferedReader reader = new BufferedReader(new FileReader(src));
            int i=0;
            while ((line = reader.readLine()) != null) {
                if (i!=0) {
                    res.append('\n');
                }
                res.append(line);
                i++;
            }
            reader.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return res.toString();
    }

    public static boolean write(String cont, File dist) {
        try {
            BufferedWriter writer = new BufferedWriter(new FileWriter(dist));
            writer.write(cont);
            writer.flush();
            writer.close();
            return true;
        } catch (IOException e) {
            e.printStackTrace();
            return false;
        }
    }
}

方法三:执行脚本

通过shell删除那行js代码,非常简洁方便,比上面的的java方便100倍,不过不能删掉第一段js代码。

find . -name "*.html"|xargs grep -l "jsapi"|xargs sed -i '/jsapi/d'
我没试过。


人生苦短,我用Python

方法四:python代码批量删除

思路:遍历doc或docs目录及子目录,查找所有.html文件,打开这些文件,读取文件内容,替换上边的js内容为空,把修改内容写回文件,结束。

说着很复杂,用python实现真的很简单。

import os
s1 = '''<link rel="stylesheet"
href="http://fonts.googleapis.com/css?family=Roboto:regular,medium,thin,italic,mediumitalic,bold" title="roboto">'''
s2 = '''<script src="http://www.google.com/jsapi" type="text/javascript"></script>'''
s3 = '''<script type="text/javascript" async="" src="https://apis.google.com/js/plusone.js"></script>'''
s4 = '''<script type="text/javascript" async="" src="http://www.google-analytics.com/ga.js"></script>'''
for root,dirs,files in os.walk(r'C:\AndroidSdk\docs'):
    for file in files:
        fd = root + os.sep + file
        if ".html" in fd:
            print fd
            f = open(fd, 'r')
            s = f.read().replace(s1, "").replace(s2, "").replace(s3, "").replace(s4, "")
            f.close()
            f = open(fd, 'w')
            f.write(s)
            f.close()
      	

献丑一条条解释一下,假定我的Android的开发帮助文档在c:\androidsdk\docs下,遍历其下所有目录和文件名只需用os的walk函数即可完成。

for root,dirs,files in os.walk(r'C:\AndroidSdk\docs'):
walk返回值,当前遍历的目录root、其下有哪些子目录dirs、有哪些文件files,重要的是递归的遍历指定目录C:\AndroidSdk\docs。

去掉html文件里两条影响速度的js,得先有html文件,

    for file in files:
        fd = root + os.sep + file
则构造出了所有文件名,找到(匹配).html文件只需这样

        if ".html" in fd:
            print fd
接下来就是干掉影显示(速度)的js了,替换文件里相应内容为空即可。

f = open(fd, 'r')
            s = f.read().replace(s1, "").replace(s2, "").replace(s3, "").replace(s4, "")
            f.close()
            f = open(fd, 'w')
            f.write(s)
            f.close()

运行吧,1分钟内就运行结束了,整个docs下共九千多个文件,遍历、读写需要时间。

最后找个doc试试 C:\AndroidSdk\docs\reference\android\widget\Spinner.html

那速度,杠杠的。

我用的是python2.7.5

呵呵,欢迎回复批评!或点赞!


python下载地址 https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi













Android开发帮助文档Doc打开速度慢解决_Python篇

标签:python   android   开发文档   帮助文档   打开速度慢   

原文地址:http://blog.csdn.net/jeapeducom/article/details/43509685

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!