If you think the Android project ScalAR listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package edu.dhbw.andar.util;
/*www.java2s.com*/import android.content.res.AssetManager;
import android.content.res.Resources;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
publicclass IO {
/**
* transfers required files to the the private file system part
* in order to be access them from C Code.
* required, as you can not access the files of the apk package directly
*/publicstaticvoid transferFilesToPrivateFS(File base, Resources res) throws IOException {
AssetManager am = res.getAssets();
if (!base.exists()) {
base.mkdir();
}
if (base.exists()) {
File cameraFile = newFile(base, "camera_para.dat");
if (!cameraFile.exists()) {
copy(am.open("camera_para.dat"), new FileOutputStream(cameraFile));
}
}
}
/**
*
* @param base
* @param assetFileName filename of the file in the assets folder
* @param res
* @throws IOException
*/publicstaticvoid transferFileToPrivateFS(File base, String assetFileName,Resources res) throws IOException {
AssetManager am = res.getAssets();
if (!base.exists()) {
base.mkdir();
}
if (base.exists()) {
File file = newFile(base, assetFileName);
if (!file.exists()) {
copy(am.open(assetFileName), new FileOutputStream(file));
}
}
}
staticvoid copy( InputStream in, OutputStream out ) throws IOException
{
byte[] buffer = newbyte[ 0xFFFF ];
for ( int len; (len = in.read(buffer)) != -1; )
out.write( buffer, 0, len );
}
}