登录
首页 » Java » InternalFileDemo

InternalFileDemo

于 2013-08-16 发布 文件大小:1294KB
0 151
下载积分: 1 下载次数: 67

代码说明:

  android开发文件读写实例demo,用户可在文本框输入文字写入文件,可用追加模式(A Demo of File read/write for Android development.)

文件列表:

InternalFileDemo
................\.classpath,475,2013-08-16
................\.project,852,2013-08-16
................\AndroidManifest.xml,894,2013-08-16
................\assets
................\bin
................\...\AndroidManifest.xml,894,2013-08-16
................\...\classes
................\...\.......\edu
................\...\.......\...\hrbeu
................\...\.......\...\.....\internalfiledemo
................\...\.......\...\.....\................\BuildConfig.class,361,2013-08-16
................\...\.......\...\.....\................\MainActivity$1.class,2541,2013-08-16
................\...\.......\...\.....\................\MainActivity$2.class,1960,2013-08-16
................\...\.......\...\.....\................\MainActivity.class,1590,2013-08-16
................\...\.......\...\.....\................\R$attr.class,364,2013-08-16
................\...\.......\...\.....\................\R$dimen.class,485,2013-08-16
................\...\.......\...\.....\................\R$drawable.class,431,2013-08-16
................\...\.......\...\.....\................\R$id.class,648,2013-08-16
................\...\.......\...\.....\................\R$layout.class,427,2013-08-16
................\...\.......\...\.....\................\R$menu.class,412,2013-08-16
................\...\.......\...\.....\................\R$string.class,496,2013-08-16
................\...\.......\...\.....\................\R$style.class,455,2013-08-16
................\...\.......\...\.....\................\R.class,753,2013-08-16
................\...\classes.dex,815256,2013-08-16
................\...\dexedLibs
................\...\.........\android-support-v4-432bb94aa4b8ffb61a925119925a54b6.jar,211326,2013-08-16
................\...\.........\annotations-83eb41caa4d049a20065e12e839a7814.jar,943,2013-08-16
................\...\InternalFileDemo.apk,258920,2013-08-16
................\...\jarlist.cache,120,2013-08-16
................\...\res
................\...\...\drawable-hdpi

................\...\...\drawable-mdpi

................\...\...\drawable-xhdpi

................\...\...\drawable-xxhdpi

................\...\resources.ap_,41402,2013-08-16
................\gen
................\...\edu
................\...\...\hrbeu
................\...\...\.....\internalfiledemo
................\...\...\.....\................\BuildConfig.java,168,2013-08-16
................\...\...\.....\................\R.java,2886,2013-08-16

................\libs
................\....\android-support-v4.jar,556198,2013-08-16
................\proguard-project.txt,781,2013-08-16
................\project.properties,563,2013-08-16
................\res
................\...\drawable-hdpi

................\...\drawable-ldpi
................\...\drawable-mdpi

................\...\drawable-xhdpi

................\...\drawable-xxhdpi

................\...\layout
................\...\......\activity_main.xml,1891,2013-08-16
................\...\menu
................\...\....\main.xml,263,2013-08-16
................\...\values
................\...\......\dimens.xml,220,2013-08-16
................\...\......\strings.xml,233,2013-08-16
................\...\......\styles.xml,697,2013-08-16
................\...\values-sw600dp
................\...\..............\dimens.xml,203,2013-08-16
................\...\values-sw720dp-land
................\...\...................\dimens.xml,277,2013-08-16
................\...\values-v11
................\...\..........\styles.xml,334,2013-08-16
................\...\values-v14
................\...\..........\styles.xml,391,2013-08-16
................\src
................\...\edu
................\...\...\hrbeu
................\...\...\.....\internalfiledemo
................\...\...\.....\................\MainActivity.java,3237,2013-08-16

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • rEGISTRANT
    notify Registrant Source Code for Andriod.
    2013-12-30 19:26:28下载
    积分:1
  • Project
    说明:  gradle 项目的算法总结,包含几种基础算法(The algorithm summary of gradle project, including several basic algorithms)
    2020-06-23 18:00:02下载
    积分:1
  • java jstl 页面
    资源描述/*  * The Apache Software License, Version 1.1  *  * Copyright (c) 1999 The Apache Software Foundation.  All rights   * reserved.  *  * Redistribution and use in source and binary forms, with or without  * modification, are permitted provided that the following conditions  * are met:  *  * 1. Redistributions of source code must retain the above copyright  *    notice, this list of conditions and the following disclaimer.   *  * 2. Redistributions in binary form must reproduce the above copyright  *    notice, this list of conditions and the following disclaimer in  *    the documentation and/or other materials provided with the  *    distribution.  *  * 3. The end-user documentation included wit
    2023-03-28 00:35:04下载
    积分:1
  • Android-UI
    界面显示,listview,可滑动的,快捷栏(Interface display the listview sliding)
    2012-03-14 14:19:39下载
    积分:1
  • android 图片浏览器 完整实例源码下载
    android 图片浏览器 完整实例源码下载
    2014-05-13下载
    积分:1
  • Android Intent实例
    Android Intent开发实例 核心代码:package com.amaker.ch06.app;import com.amaker.ch06.app.R;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.EditText;/** * @author 郭宏志 * 发送Email */public class MainActivity extends Activity { // 声明视图组件 private EditText toEditText,subjectEditText,contentEditText; private Button sendBtn; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // 实例化视图组件 toEditText = (EditText)findViewById(R.id.toEditText01); subjectEditText = (EditText)findViewById(R.id.subjectEditText01); contentEditText = (EditText)findViewById(R.id.contentEditText01); sendBtn = (Button)findViewById(R.id.sendButton01); // 为按钮添加单击监听器 sendBtn.setOnClickListener(listener); } // 发送按钮单击监听器 private OnClickListener listener = new OnClickListener() { @Override public void onClick(View v) { // 获得输入信息 String to = toEditText.getText().toString(); String subject = subjectEditText.getText().toString(); String content = contentEditText.getText().toString(); // 创建Intent Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); // 设置内容类型 emailIntent.setType("plain/text"); // 设置额外信息 emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{to}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, content); startActivity(Intent.createChooser(emailIntent, "发送邮件...")); } };}
    2014-11-24下载
    积分:1
  • DateException
    Button Activity Source Code for Andriod.
    2013-11-22 15:51:05下载
    积分:1
  • 验证码识别
    验证码识别---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    2022-03-16 03:36:52下载
    积分:1
  • 数独解算器为Android平台
    应用背景已经开发了许多算法和回溯递归奥赛罗的生产类型可以指出和知情的搜索,和更多。实现这些算法,各有其局限性。本文提出的方案是不完整的数独 ; ;在输入表缺乏决心和提供一个独特的解决方案。这个程序的输出是一百分之一毫秒的速度。关键技术看数独谜题解开在你的眼前,作为一个简单的算法解决了任何难度与Elan的困惑。通过弹出式数字键盘,一个单元格输入一个单元格,该单元格将自动禁用该单元格的无效号码。当前状态的解算器只显示一个解决方案的一个难题,有多种解决方案。解算器还指出了没有有效的解决方案的难题。我用爪哇语和安卓工作室和回溯算法。
    2023-05-09 02:15:03下载
    积分:1
  • 在Java的Web浏览器
    这演示了如何构建在Java中一个简单的Web浏览器。  它可在我的Github上的帐户https://github.com/ComradeHadi/HadiBrowser
    2023-05-20 00:40:03下载
    积分:1
  • 696518资源总数
  • 106174会员总数
  • 31今日下载