1.android开发 通过URL返回文件并保存到指定的SD卡路径中public static void writeFileData(String fileName, String message){
try{
FileOutputStream output = new FileOutputStream("/sdcard/" + fileName);
byte[] bytes = message.getBytes();
output.write(bytes);
output.close();
}catch(Exception e){
e.printStackTrace();
}
}
自己指定文件名,写文件就可以了 。
2.android的项目里怎么规定文件路径的方法一:把目标文件放入resources文件中,以通过读取R的资源文件来获取,具体方式如下:1、在res下新建raw文件,将带读取文件添加到raw文件目录下 。
2、添加如下代码:// 如果要使用文件名获取文件数据:首先获取资源id然后再通过id获取输入流 InputStream im = getResources().openRawResource(R.raw.h_data11); BufferedReader read = new BufferedReader(new InputStreamReader(im)); String line = ""; StringBuilder sb = new StringBuilder(); try { while((line = read.readLine()) != null) { sb.append(line).append("\n"); } } catch (IOException e) { e.printStackTrace(); } finally { if(read != null) { try { read.close(); read = null; } catch (IOException e) { e.printStackTrace(); } }if(im != null) { try { im.close(); im = null; } catch (IOException e) { e.printStackTrace(); } } } Log.v("", "result = " + sb.toString());方法二:使用assets 只读文件进行读取 。1、将文件copy到assets下,可以新建文件夹如:“www”然后将文件放入www文件夹中,读取的path为:"www/filename"String result = "";ObjectInputStream ois = null; AssetManager am = context.getResources().getAssets(); try { ois = new ObjectInputStream(am.open("www/filename")); result = (String) ois.readObject(); } catch ( e) { e.printStackTrace(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } catch ( e) { e.printStackTrace(); } finally { try { if (ois != null) { ois.close(); ois = null; } } catch (IOException e) { e.printStackTrace(); } }以对象的方式读取文件中的数据,如果没有新建文件夹,把前面的“www/”去掉就ok啦以上方式我都还有疑问的地方:1、raw下新建多级目录是否真的不能够使用 。
【androidurl文件路径怎么写】
文章插图
- 无法读源文件或磁盘 无法删除文件无法读源文件或磁盘
- 文件隐藏了怎么恢复 windows文件隐藏了怎么恢复
- 如何隐藏文件扩展名 文件怎么隐藏扩展名
- 字幕文件怎么用 字幕文件怎么用电脑打开
- c盘满了哪些文件可以删除 win7c盘满了哪些文件可以删除
- bin 文件怎么打开 后缀bin文件怎么打开
- iphone备份文件在哪 iphone 备份文件存在哪里
- 扫描的文件怎么修改 扫描的文件怎么修改日期
- 相对路径和绝对路径 相对路径和绝对路径举例
- krc文件转换mp3 krc文件转换mp3软件