|
|
|
Android การบันทึก Video Streaming ต้องทำยังไงต้องรับไฟล์เข้ามาแปลงก่อนไหม |
|
|
|
|
|
|
|
ลองดูตัวอย่างนี้ครับ การ Save ไฟล์ครับ
Code (Android-Java)
URL url = new URL(from);
URLConnection conexion = url.openConnection();
conexion.connect();
int lenghtOfFile = conexion.getContentLength(); // Size of file
InputStream input = new BufferedInputStream(url.openStream());
String fileName = from.substring(from.lastIndexOf('/')+1, from.length());
OutputStream output = new FileOutputStream(path+fileName); // save to parh sd card
byte data[] = new byte[1024];
while ((count = input.read(data)) != -1) {
output.write(data, 0, count);
}
output.flush();
output.close();
input.close();
Android Download Save file from Server
|
|
|
|
|
Date :
2013-05-30 17:48:08 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|