在我的应用程序中,我想要一个按钮,按下该按钮时,将存储在我的应用程序原始文件夹中的文件复制到sdcard / Android / data ...覆盖已存在的现有文件。
这是我到目前为止所拥有的。我的原始文件夹中的文件名为brawler.dat
,作为示例。
我不是要求任何人编写整个代码,但这肯定是一个奖励。
我主要需要有人指出我正确的方向。
我可以创建按钮来转到URL等...但我觉得我已经为下一个级别做好了准备。
main.xml中
rLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Overwrite File" />
FreelineActivity.java
package my.freeline.conquest;
import android.app.Activity;
import android.os.Bundle;
public class FreelineActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
答案 0 :(得分:0)
以这种方式获取原始资源输入流:
// in your activity in `onClick` event of the button:
InputStream is = getResources().openRawResource(R.raw.yourResourceName);
然后将其读入缓冲区并将其写入文件输出流:
OutputStream os = new FileOutputStream("real/path/name"); // you'll need WRITE_EXTERNAL_STORAGE permission for writing in external storage
byte[] buffer = new byte[1024];
int read = 0;
while ((read = is.read(buffer, 0, buffer.length)) > 0) {
os.write(buffer, 0, size);
}
is.close();
os.close();
答案 1 :(得分:0)
您可以执行以下简单调用copyRawFile()。有关存储的更多详细信息,请参阅http://developer.android.com/guide/topics/data/data-storage.html
private void copyRawFile() {
InputStream in = null;
OutputStream out = null;
String filename="myFile"; //sd card file name
try {
//Provide the id of raw file to the openRawResource() method
in = getResources().openRawResource(R.raw.brawler);
out = new FileOutputStream("/sdcard/" + filename);
copyFile(in, out);
in.close();
in = null;
out.flush();
out.close();
out = null;
} catch(Exception e) {
Log.e("tag", e.getMessage());
}
}
private void copyFile(InputStream in, OutputStream out) throws IOException {
byte[] buffer = new byte[1024];
int read;
while((read = in.read(buffer)) != -1){
out.write(buffer, 0, read);
}
}