Redis Redis是一个开源的使用ANSI C语言编写、支持网络、 可基于内存亦可持久化的日志型、Key-Value型 NoSQL数据库,并提供多种语言的API。从2010年3 月15日起,Redis的开发工作由VMware主持。从 2013年5月开始,Redis的开发由Pivotal赞助。 一 ...
分类:
其他好文 时间:
2021-02-15 11:38:32
阅读次数:
0
单文件上传 @PostMapping(value = "upload") @ResponseBody public Map upload(@RequestParam("file") MultipartFile file) { Map map=new HashMap(); try { if (file ...
分类:
Web程序 时间:
2019-10-28 14:38:54
阅读次数:
126
1.介绍 2.使用方法 3.文件存储位置 4.java后台代码 5.文件的保存位置查看方法 (1)点击右侧的 Device File Explorer (2)找到文件夹 ...
分类:
移动开发 时间:
2019-03-14 16:49:42
阅读次数:
193
文件存储的核心是Context提供了一个openFileOutput()与openFileInput()俩个方法 课程demo ...
分类:
其他好文 时间:
2017-03-01 18:14:23
阅读次数:
185
前提:在CMD 命令下 导出命令:exp 用户名/密码@数据库 owner=用户名 file=文件存储路径(如:F:\abcd.dmp) 测试截图:exp ZM/sql123@ORCL owner=ZM file=F\abcd.dmp 导入命令:imp 用户名/密码@数据库 fromuser=用户名 ...
分类:
数据库 时间:
2016-07-05 13:45:03
阅读次数:
454
一、NSUserDefault(偏好设置,Preference) 小规模数据,弱业务相关数据使用。例:某个UISwitch的状态。二、File(文件存储) 文件存储包括了Plist、archive、Stream等方式,一般结构化的数据或者需要方便查询的数据,都会以Plist的方式去持久化。 A...
分类:
移动开发 时间:
2015-10-19 15:15:24
阅读次数:
335
(1) Activity提供了openFileOutput()方法可以用于把数据输出到文件中;
(2)文件可用来存放大量数据,如文本、图片、音频等。
(3)存储默认位置: /data/data//files/***.***
(4)Activity还提供了getCacheDir()和getFilesDir()方法
1)getCacheDir()方法用于获取/data/data//cache目录
2)getFilesDir()方法用于获取/data/data//file...
分类:
移动开发 时间:
2015-08-27 18:52:27
阅读次数:
171
public class MainActivity extends Activity {
private EditText inputEditText;
private Button btn;
private TextView showView;
@Override
protected void onCreate(Bundle savedInstanceState) {
s...
分类:
移动开发 时间:
2015-02-03 15:02:42
阅读次数:
131
今年看了下android的文件存储,大致和java实现差不多 android提供了如下两个方法来打开本应用程序的数据文件的IO流: FileInputStream??openFileInput(fileName);??//输入流 FileOutputStream?outputStream?...
分类:
移动开发 时间:
2014-12-07 21:51:02
阅读次数:
327