我寫了一個應用程序,可以從服務器下載pdf文件。解決:從服務器下載文件時下載站點
當我點擊下載按鈕時,我可以看到它下載的頂部標誌,但隨後停止並告訴我「下載完成」。
當我嘗試打開文件或在文件夾中搜索它,然後無法找到它,它告訴我「文件路徑不存在」。
我在清單中添加了「WRITE_EXTERNAL_STORAGE」和「Internet」權限。
我是否必須在代碼中添加一個執行檢查/請求?
FragmentDownloads.java
import android.app.DownloadManager;
import android.content.Context;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
public class FragmentDownloads extends Fragment implements View.OnClickListener {
Button buttonCV;
View view;
public FragmentDownloads() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
view = inflater.inflate(R.layout.fragment_downloads, container, false);
buttonCV = (Button) view.findViewById(R.id.buttonCV);
buttonCV.setOnClickListener(this);
return view;
}
@Override
public void onClick(View v) {
DownloadManager downloadManager = (DownloadManager) getActivity().getSystemService(Context.DOWNLOAD_SERVICE);
Uri uri = Uri.parse("https://cvdatabase.000webhostapp.com/file.pdf");
DownloadManager.Request request = new DownloadManager.Request(uri);
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
Long reference = downloadManager.enqueue(request);
}
}
其他問題:對象 「參照」 在最後是灰色的。在某個YouTube視頻中,它不是。我是初學者,無法弄清楚爲什麼。
fragment_downloads.xml
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="androfenix.mycvapp.FragmentDownloads">
<!-- TODO: Update blank fragment layout -->
<Button
android:id="@+id/buttonCV"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</FrameLayout>
解決: 我不得不添加該文件已經被下載的目錄路徑。 .setDestinationInExternalFilesDir(getActivity()。getApplicationContext(),Environment.DIRECTORY_DOWNLOADS,「filename.pdf」);
我沒有告訴程序在哪裏保存它。謝謝,我看看鏈接並試圖弄清楚。 – Martin
我想出了謝謝!有用 – Martin