Tech Programming Ideas is one of the best places on the programming for programmers. Learn coding with Tech Programming Ideas tutorials. We are covered android programming, php, yii2 framework, javascript, mysql, vb.net etc.
//This is the file we are going to download. //Please add your server file location .
URL url = new URL("http://www.mission2win.in/pdf/pdf22.pdf");
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
//set path where to save the file
File SDCardRoot = Environment.getExternalStorageDirectory();
//create a new file to save
File file = new File(SDCardRoot,"pdf22.pdf");
FileOutputStream fileOutput = new FileOutputStream(file);
//stream used for reading the data from the internet
InputStream inputStream = urlConnection.getInputStream();
//create a buffer
byte[] buffer = new byte[124];
int bufferLength = 0;
Verify permission and add this code to give a permission
public static void verifyStoragePermissions(Activity activity) {
// Check if we have write permission
int permission = ActivityCompat.checkSelfPermission(activity, Manifest.permission.WRITE_EXTERNAL_STORAGE);
if (permission != PackageManager.PERMISSION_GRANTED) {
// We don't have permission so prompt the user
ActivityCompat.requestPermissions(
activity,
PERMISSIONS_STORAGE,
REQUEST_EXTERNAL_STORAGE
);
}
}
Other wise add several permission to Manifest file.
<!-- Permission required for Downloading Files -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- Permission required for Checking Internet Connection -->
//set path where to save the file
File SDCardRoot = Environment.getExternalStorageDirectory();
//create a new file to save
File file = new File(SDCardRoot,"pdf22.pdf");
FileOutputStream fileOutput = new FileOutputStream(file);
//stream used for reading the data from the internet
InputStream inputStream = urlConnection.getInputStream();
//This is total size of the downloading file totalSize = urlConnection.getContentLength(); runOnUiThread(new Runnable() { @Override public void run() { progressBar.setMax(totalSize); } });
//create a buffer
byte[] buffer = new byte[124];
int bufferLength = 0;
LibreOffice is a powerful and free office suite, used by millions of people around the world. LibreOffice includes several applications that make it the most versatile Free and Open Source office suite on the market: Writer (word processing), Calc (spreadsheets), Impress (presentations), Draw (vector graphics and flowcharts), Base (databases), and Math (formula editing).
The following steps show how to install VLC Media Player using the terminal on Unbutu. Open terminal window In the terminal – run the following command to refresh the software repository catalogue
sudo apt-get update
sudo apt-get install vlc
When prompted with the install size and ‘Do you want to continue’ press ‘Y’ on your keyboard.