所以我一直在练习下载管理器,我正在尝试一些程序。 第一个按钮会将所述Pdf下载到我手机中的某个位置。 第二个按钮应该用用户安装的Pdf阅读器打开Pdf文件,如WP Reader等。 下载工作正常,但是当我打开pdf时,它表示格式无效。 我上传了一个示例Pdf到谷歌驱动器,所以我知道上传的文件在任何情况下都没有损坏。从服务器下载文件时会出现问题。请帮我找错。我对Android来说相对较新。
下载按钮使用Onclicklistener,而loadPdf在xml文件android:onClick =“downloadPdf”中给出。
public class MainActivity extends AppCompatActivity {
String myHTTPUrl = "https://drive.google.com/open?id=0B5Pev9zz5bVjZTFFZ1dLZVp1WVU";
String TAG = "My app";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button download = (Button) findViewById(R.id.download);
download.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.v(TAG,"download method called");
downloadPdf();
Toast.makeText(MainActivity.this,"Listener Called",Toast.LENGTH_SHORT).show();
Log.v(TAG,"On Click Listener Called");
}
});
}
public void loadPdf(View view) {
Log.v(TAG,"Pdf load called");
File pdfFile = new File(Environment.getExternalStorageDirectory()+"/notes","ssp.pdf");
if(pdfFile.exists())
{
Uri path = Uri.fromFile(pdfFile);
Intent pdfIntent = new Intent(Intent.ACTION_VIEW);
pdfIntent.setDataAndType(path, "application/pdf");
pdfIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
Intent intent = Intent.createChooser(pdfIntent, "Open File");
try
{
startActivity(intent);
}
catch(ActivityNotFoundException e)
{
Toast.makeText(MainActivity.this, "No Application available to view pdf", Toast.LENGTH_LONG).show();
}
}
else
{
Toast.makeText(MainActivity.this,"Pdf not found",Toast.LENGTH_SHORT).show();
}
}
public void downloadPdf()
{
DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(myHTTPUrl));
request.setTitle("Solid State Physics");
request.setDescription("File is being Downloaded...");
request.allowScanningByMediaScanner();
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setDestinationInExternalPublicDir("/notes","ssp.pdf");
manager.enqueue(request);
}}
已编辑: 这是我遇到屏幕截图的确切错误 错误:文件格式错误,无法打开 Screenshot of the error
答案 0 :(得分:0)
您没有下载PDF,而是下载显示PDF内容的网页。如果要直接下载PDF文件,请使用以下URL:
String myHTTPUrl = "https://drive.google.com/uc?export=download&id=0B5Pev9zz5bVjZTFFZ1dLZVp1WVU";
您的申请应该有效。
(不要忘记先删除无效的notes/ssp.pdf
文件,否则DownloadManager
会以不同的名称下载文件,例如notes/ssp-1.pdf
。