Android的存储
- Android中的数据存储方式及其存储位置
- SharedPrefrence存储
1). 位置
- 手机内部文件存储
- 手机外部文件存储
- Sqlite数据库存储
5). Android单元测试
- 远程服务器存储
4). HTTP协议:
a. 安装并配置tomcat
b. 将tomcat关联eclipse中
c. 创建一个动态的web project
d. 把需要直接访问的资源(jsp/apk/image)放在WebContent下
c. 可能需要创建Servlet/Filter
d. 运行
f. 访问: http://ip:8080/xxxx/index.jsp
6).实现联网请求功能的3步:
文件访问权限
* 指的是谁能访问这个文件
* 在Android中,每一个应用,都是一个独立的用户
* 使用10个字母表示 drwxrwxrwx
* 第一个字母:
* d:表示文件夹
* -:表示文件
* 第一组rwx:表示的是文件拥有者(owner)对文件的权限
* r:read,读
* w:write
* x:execute
* 第二组rwx:表示的是跟文件拥有者属于同一用户组的用户(grouper)对文件的权限
* 第三组rwx:表示的其他用户(other)对文件的权限
在内部存储空间中读写文件
小案例:用户输入账号密码,勾选“记住账号密码”,点击登录按钮,登录的同时持久化保存账号和密码
布局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical" > <EditText
android:id="@+id/et1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="用户名:" /> <EditText
android:id="@+id/et2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="密 码:" /> <CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="记住用户名和密码" /> <Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="login"
android:text="登 录" /> </LinearLayout>
public class MainActivity extends Activity { @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
} public void login(View v){
EditText et1 = (EditText) findViewById(R.id.et1);
EditText et2 = (EditText) findViewById(R.id.et2); String username = et1.getText().toString();
String pwd = et2.getText().toString();
// 判断用户是否勾选保存账号密码
CheckBox cb = (CheckBox) findViewById(R.id.checkBox1);
if(cb.isChecked()){
//将用户名和密码写到本地文件,用IO流来写
File file = new File("data/data/com.example.cunchu/info.txt");//内部存储空间的路径
FileOutputStream fos;
try {
fos = new FileOutputStream(file);
fos.write((username+"####"+pwd).getBytes());
fos.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
} }
System.out.print("登录成功!!!");
Toast.makeText(this,"登录成功!!!", Toast.LENGTH_SHORT).show();
} } public void read(){
try {
FileInputStream fis = new FileInputStream("data/data/com.example.cunchu/info.txt");
BufferedReader br = new BufferedReader(new InputStreamReader(fis));
String text = br.readLine();
String []s = text.split("####");
EditText et1 = (EditText) findViewById(R.id.et1);
EditText et2 = (EditText) findViewById(R.id.et2);
//读取到数据之后,回显至输入框
et1.setText(s[0]);
et2.setText(s[1]); } catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
} }
运行结果:
使用路径api读写文件
getFilesDir()得到的file对象的路径是data/data/com.itheima.rwinrom2/files
* 存放在这个路径下的文件,只要你不删,它就一直在
getCacheDir()得到的file对象的路径是data/data/com.itheima.rwinrom2/cache
* 存放在这个路径下的文件,当内存不足时,有可能被删除
系统管理应用界面的清除缓存,会清除cache文件夹下的东西,清除数据,会清除整个包名目录下的东西
如果有时需要直接复制项目
需要改动的地方:
* 项目名字
* 应用包名
* R文件重新导包
在外部存储空间中读写文件
在内部存储读写和外部存储 读写 文件,都是用IO流读写,不同的是,路径不同。