我已经四处寻找,但无法找到适合我的问题的解决方案。我是Android新手。
构建一个读取和编辑csv文件的应用程序。
到目前为止,我有应用程序从assets文件夹中读取csv。这是我用于此的代码。 Import.java代码。
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import android.content.Context;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;
public class CSVAdapter extends ArrayAdapter<State>{
Context ctx;
public CSVAdapter(Context context, int textViewResourceId) {
super(context, textViewResourceId);
this.ctx = context;
//Load the data.
loadArrayFromFile();
}
@Override
public View getView(final int pos, View convertView, final ViewGroup parent){
TextView mView = (TextView)convertView;
if(null == mView){
mView = new TextView(parent.getContext());
mView.setTextSize(28);
}
mView.setText(getItem(pos).getName());
/*mView.setOnClickListener(new OnClickListener(){
public void onClick(View v){
Toast.makeText(parent.getContext(), getItem(pos).getCapital(), Toast.LENGTH_SHORT).show();
}
});*/
return mView;
}
private void loadArrayFromFile(){
try {
InputStream is = ctx.getAssets().open("states.csv");
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
String line;
while ((line = reader.readLine()) != null) {
String[] RowData = line.split(",");
State cur = new State();
cur.setName(RowData[0]);
cur.setCapital(RowData[1]);
this.add(cur);
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
如您所见,inputStream是assets文件夹。我希望能够在外部存储中搜索csv文件,例如下载或SD卡,但无法找到如何打开文件浏览器来查找它。
任何人都可以提供帮助吗?
谢谢!
答案 0 :(得分:1)
这里有一个更大的概述:
http://developer.android.com/guide/topics/data/data-storage.html
但:
内部存储访问:
String FILENAME = "hello_file";
String string = "hello world!";
FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
fos.write(string.getBytes());
fos.close();
外部存储访问:
File file = new File(getExternalFilesDir(null), "DemoFile.jpg");