Files存储练习

package com.hanqi.myapplication;

import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

import java.io.File;
import java.io.FileOutputStream;
import java.io.PrintStream;

public class Main2Activity extends AppCompatActivity {
    EditText user_name;
    EditText user_password;
    Button bt_1;
    Button bt_2;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main2);
        user_name=(EditText)findViewById(R.id.user_name);
        user_password=(EditText)findViewById(R.id.user_password);
        bt_1=(Button)findViewById(R.id.bt_1);
        bt_1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                String input_username=user_name.getText().toString();
                String input_password=user_password.getText().toString();
                if (input_username.trim().length()==0||input_password.trim().length()==0)
                {
                    Toast.makeText(Main2Activity.this, "用户名或密码不能为空", Toast.LENGTH_SHORT).show();
                }else
                {
                    Intent intent=new Intent(Main2Activity.this,Main22Activity.class);
                    startActivity(intent);
                    try
                    {
                        File file=getFilesDir();
                        String path=file.getAbsolutePath();
                        FileOutputStream fos=openFileOutput("test.txt", MODE_APPEND);
                        PrintStream ps=new PrintStream(fos);
                        ps.print(input_username);
                        ps.close();
                        fos.close();
                        FileOutputStream fos1=openFileOutput("tes.txt", MODE_APPEND);
                        PrintStream ps1=new PrintStream(fos1);
                        ps1.print(input_password);
                        ps1.close();
                        fos1.close();
                        Toast.makeText(Main2Activity.this, "保存成功", Toast.LENGTH_SHORT).show();
                    }catch (Exception e)
                    {
                        e.printStackTrace();
                    }
                }
            }
        });
    }
}
package com.hanqi.myapplication;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.EditText;

import java.io.FileInputStream;

public class Main22Activity extends AppCompatActivity {
    EditText file_name;
    EditText file_password;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main22);
        file_name=(EditText)findViewById(R.id.file_name);
        file_password=(EditText)findViewById(R.id.file_password);
        try
        {
            FileInputStream fis =openFileInput("test.txt");
            byte[] bytes =new byte[1024];
            int i=0;
            String str1 = "";
            while ((i=fis.read(bytes))>0)
            {
                String str = new String(bytes,0,i);
                str1+=str;
            }
            fis.close();
            file_name.setText(str1);

            int ii=0; FileInputStream fis1 =openFileInput("tes.txt");
            byte[] bytes1 =new byte[1024];
            String str2 = "";
            while ((ii=fis1.read(bytes1))>0)
            {
                String str = new String(bytes1,0,ii);
                str2+=str;
            }
            fis1.close();
            file_password.setText(str2);
        }catch (Exception e)
        {
            e.printStackTrace();
        }
    }
}
<?xml version="1.0" encoding="utf-8"?>
<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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.hanqi.myapplication.Main2Activity"
    android:orientation="vertical">
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/user_name"
        android:hint="用户名"/>
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/user_password"
        android:hint="用户密码"/>

        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/bt_1"
            android:text="登陆"
            />

</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.hanqi.myapplication.Main22Activity"
    android:orientation="vertical">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="用户名:"/>
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/file_name"/>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="用户密码:"/>
        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/file_password"/>
    </LinearLayout>

</LinearLayout>

时间: 2024-09-30 10:21:08

Files存储练习的相关文章

php.ini配置文件

php.ini配置文件: engine=On;使PHP脚本语言引擎在Apache下有效.当设置engine=Off后不能解析PHP文件. short_open_tag=Off;设置<? code ?>标志是否能被识别.设置short_open_tag=Off后不能识别在<? code ?>中的代码 . asp_tags = Off:设置<% code %>标志是否能被识别.设置asp_tags==Off;后不能识别. precision = 14:设置浮点类型数据显示位

backup4:数据库自动备份,自动删除备份文件

一:手写TSQL 脚本 1,自动备份 每周进行一次Database 的 Full Backup,设置 Schedule Interval 为Weekly use master go declare @FileName nvarchar(256) set @FileName = N'D:\SQLBackupFolder\TestDB_FullBackup_'+CONVERT(nvarchar(max),getdate(),112)+N'.bak' BACKUP DATABASE [TESTDB]

PHP-php.ini中文版

今天细看了下配置文件 有很多没用过的 就从网上搜了一篇 常看看 ;;;;;;;;;;;;;;;; 简介 ;;;;;;;;;;;;;;;;; 本文并非是对英文版 php.ini 的简单翻译,而是参考了众多资料以后,结合自己的理解,增加了许多内容,; 包括在原有 php.ini 基础上增加了一些实用模块的配置说明,同时对文件内容的安排进行了调整.; 由于作者不喜欢 no-free 的玩意儿,所以删除了除 MySQL 和 PostgreSQL 以外的其他数据库模块配置选项. ;;;;;;;;;;;;;

php.ini优化,,,php-fpm

无论是apache还是nginx,php.ini都是合适的.而php-fpm.conf适合nginx+fcgi的配置. 1)打开PHP的安全模式 PHP的安全模式是个非常重要的PHP内嵌的安全机制,能够控制一些PHP中的函数执行, 比如system(),同时把很多文件操作的函数进行了权限的控制. safe_mode = Off 打开时,PHP将检查当前脚本的拥有者是否和被操作的文件的拥有者相同 safe_mode = On 2)用户组安全 当safe_mode打开时,safe_mode_gid被

yii2源码学习笔记(十)

继续了解Application. 1 /** 2 * Registers the errorHandler component as a PHP error handler. 3 * 注册errorHandler组件作为PHP错误处理函数 4 * @param array $config application config 应用程序配置 5 */ 6 protected function registerErrorHandler(&$config) 7 { 8 if (YII_ENABLE_E

决定map个数的因素

此文紧接MR-Job提交流程.上一篇分析可以看出,MR-Job提交过程的核心代码在于 JobSubmitter 类的 submitJobInternal()方法.本文就由此方法的这一句代码开始分析: //计算并确定 map 的个数,以及各个输入切片 Splits 的相关信息 int maps = writeSplits(job, submitJobDir); 1.查看writeSplits()方法的实现过程: private int writeSplits(org.apache.hadoop.m

php.ini参数调优

目录 1.打开php的安全模式 1 2.用户组安全 1 3.关闭危险函数 1 4.关闭php版本信息在http头中的泄漏 1 5.关闭注册全局变量 1 6.打开magic_quotes_gpc来防止SQl注入 1 7.错误信息控制 2 8.错误日志 2 9.部分资源限制参数优化 2 10.部分安全参数优化 2 11.调整php sesson信息存放类型和位置 2 无论是apache还是nginx,php.ini都是适合的.而php-fpm.conf适合nginx+fcgi的配置 首先选择产品环境

php 中 调优(php。ini)

php版本:php5.3.27 1.php加速软件eaccelerator.zend.xcache (个人推荐) 地址:http://linuxboys.blog.51cto.com/9150052/1575547 2.使用tmpfs(内存文件系统)作为缓存加速缓存的文件目录. mount -t tmpfs /dev/shm -o size=256m mount -t tmpfs /dev/shm /tmp/eacclelerator #上传图片缩略图处理的目录 #百度百科tmpfs:http:

通过案例学调优之--IOSTAT(查看磁盘I/O)

简介 iostat主要用于监控系统设备的IO负载情况,iostat首次运行时显示自系统启动开始的各项统计信息,之后运行iostat将显示自上次运行该命令以后的统计信息.用户可以通过指定统计的次数和时间来获得所需的统计信息. 语法 iostat [ -c ] [ -d ] [ -h ] [ -N ] [ -k | -m ] [ -t ] [ -V ] [ -x ] [ -z ] [ device [...] | ALL ] [ -p [ device [,...] | ALL ] ] [ inte