android 网络上载PDF文件并打开PDF文件内容

android 网络下载PDF文件并打开PDF文件内容

本文出自:http://www.androidkaifa.com/thread-232-1-1.html   

      大家可能都有在网络上下载文件的经验,但你还可能没有在网络上下载一个PDF格式的文件并在下载完成后查看这个PDF文件的内容,而查看PDF文件是我们使用手机最为常见的操作,做为一个android开发者这样的技术是应该具有的,下面www.androidkaifa.com就为大家提供一如何从网络中下载 PDF格式文件,并查阅这个PDF文件,废话不多说了,上代码:

manifest文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
     android:versionCode="1"
     android:versionName="1.0" package="com.pdftest">
    <uses-sdk android:minSdkVersion="7" />
    <uses-permission android:name="android.permission.INTERNET"></uses-permission>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
    <application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
        <activity android:name=".PDFFromServerActivity"
                 android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>
</manifest>
二: Downloader.java下载功能类
public class Downloader {

        public static void DownloadFile(String fileURL, File directory) {
                try {
                       
                        FileOutputStream f = new FileOutputStream(directory);
                        URL u = new URL(fileURL);
                        HttpURLConnection c = (HttpURLConnection) u.openConnection();
                        c.setRequestMethod("GET");
                        c.setDoOutput(true);
                        c.connect();

                        InputStream in = c.getInputStream();

                        byte[] buffer = new byte[1024];
                        int len1 = 0;
                        while ((len1 = in.read(buffer)) > 0) {
                                f.write(buffer, 0, len1);
                        }
                        f.close();
                } catch (Exception e) {
                        e.printStackTrace();
                }

        }
}
三:主activity类:PDFFromServerActivity.java
public class PDFFromServerActivity extends Activity {
        @Override
        public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.main);
                String extStorageDirectory = Environment.getExternalStorageDirectory()
                .toString();
                File folder = new File(extStorageDirectory, "pdf");
                folder.mkdir();
                File file = new File(folder, "Read.pdf");
                try {
                        file.createNewFile();
                } catch (IOException e1) {
                        e1.printStackTrace();
                }
                Downloader.DownloadFile("http://www.xxxxxt.pdf", file);
      
                showPdf();
        }
        public void showPdf()
            {
                File file = new File(Environment.getExternalStorageDirectory()+"/pdf/Read.pdf");
                PackageManager packageManager = getPackageManager();
                        Intent testIntent = new Intent(Intent.ACTION_VIEW);
                        testIntent.setType("application/pdf");
                        List list = packageManager.queryIntentActivities(testIntent, PackageManager.MATCH_DEFAULT_ONLY);
                        Intent intent = new Intent();
                        intent.setAction(Intent.ACTION_VIEW);
                        Uri uri = Uri.fromFile(file);
                        intent.setDataAndType(uri, "application/pdf");
                        startActivity(intent);
            }
}