編輯:關於android開發
Atitit.android播放smb 網絡鄰居視頻文件解決方案
Android4.4
據分析播放器的播放歷史記錄分析,ES文件浏覽器播放局域網視頻時 將局域網中 /192.168.1.168/SharedDocs/huantaihu.mp4視頻文件的地址轉換為標准HTTP數據流格式 "http://127.0.0.1:59767/smb/192.168.1.168/SharedDocs/huantaihu.mp4";;
然後就可以通過intent直接調用本地播放器程序來播放了
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(android.content.Intent.ACTION_VIEW);
strSMBURLPath="http://127.0.0.1:59767/smb/192.168.1.168/SharedDocs/huantaihu.mp4";;
intent.setDataAndType(Uri.parse(strSMBURLPath), "video/*");
startActivity(intent);
據反編譯ES文件管理器源碼,除了用到jcifs.jar的SMB庫(SMB相關功能已基本實現),可能還用到apache的HTTP服務器相關內容
作者:: 綽號:老哇的爪子 ( 全名::Attilax Akbar Al Rapanui 阿提拉克斯 阿克巴 阿爾 拉帕努伊 ) 漢字名:艾龍, EMAIL:[email protected]
轉載請注明來源: http://www.cnblogs.com/attilax/
Buildg個嵌入式web服務器..+smbFile走ok蘭..
package com.attilax.util;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
public class StreamUtil {
byte[] buffer = new byte[524288];
public void convertStream(InputStream in, OutputStream out) {
// InputStream in = new FileInputStream(srcFile);
// out = new FileOutputStream(destFile);
int byteread;
byteread = read(in);
while (byteread != -1) {
if (byteread != 0) {
try {
out.write(buffer, 0, byteread);
System.out.println("---out.write.."+byteread);
//out.flush();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
byteread = read(in);
}
try {
in.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
out.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
private int read(InputStream in ) {
int byteread;
try {
byteread = in.read(buffer,0,524288);
} catch (Exception e) {
e.printStackTrace();
byteread = 0;
}
return byteread;
}
}
android通過SMB訪問局域網PC中的共享視頻文件,如何在android上搭建個媒體服務器 以便通過HTTP形式訪問_百度知道.html
《Android動畫高手成長記》跳跳球效果 在介紹本文動畫效果實現之前,先來介紹屬性動畫相關的幾個知識點。 ValueAnimator與ObjectAnimator。
selenium中webdriver的局部HTML提取別和我說selenium中的webdriver用driver.page_source,我就是不想把整篇HTML文檔每
Android Drawable的9種子類 介紹 Drawable 在android裡面 就是代表著圖像,注意是圖像 而不是圖片。 圖片是圖像的子集。圖像除了可以包含
Reveal-加載利用全局斷點 在網上搜怎麼加載Reveal的,好多都是利用Reveal.frameWork來拖進工程裡面,這樣很不方便,每次更換新工程都要這樣做,這