码迷,mamicode.com
首页 >  
搜索关键字:environment    ( 2700个结果
android 拍照或者图库选择 压缩后 图片 上传
通过拍照或者从相册里选择图片通过压缩并上传时很多应用的常用功能,记录一下实现过程一:创建个临时文件夹用于保存压缩后需要上传的图片 /** * path:存放图片目录路径 */ private String path = Environment.getExternalStorag...
分类:移动开发   时间:2014-10-24 18:45:38    阅读次数:1394
undefined method `environment' for nil:NilClass when importing Bootstrap into rails
今天做项目时往Gemfile里加了各gem, 然后bundle update了一下, 然后悲剧了,出现了undefined method `environment' for nil:NilClass when importing Bootstrap into rails错误, 各种不理解. 然后查了...
分类:其他好文   时间:2014-10-24 14:13:21    阅读次数:229
安卓写文件及文件夹
首先,在开始具体操作前,我们必须熟悉安卓File类的构造函数,见我的文章安卓File类http://blog.csdn.net/hemeng2009/article/details/40398063 其次,明确需求,根据文件还是文件夹选择File类的构造函数。 文件夹: if (Environment.getExternalStorageState().equals(Environment....
分类:移动开发   时间:2014-10-23 17:50:09    阅读次数:195
王立平--往sdcard中以流的形式存储数据
public void saveSDCard(String filename, String filecontent)throws Exception { File file = new File(Environment.getExternalStorageDirectory(),filename); FileOutputStream outStream = new FileOu...
分类:其他好文   时间:2014-10-23 17:43:54    阅读次数:148
winform 获取当前项目所在的路径
代码:1 string curAppPath = System.IO.Directory.GetParent(System.Environment.CurrentDirectory).Parent.FullName; 首先通过 System.Environment.CurrentDirecto...
分类:Windows程序   时间:2014-10-22 20:10:32    阅读次数:269
android SD卡存储
File path1 = Environment.getExternalStoragePublicDirectory( ??????? ??Environment.DIRECTORY_ALARMS);?????????????? /mnt/sdcard/Alarms ???? File path2 = Environment.getEx...
分类:移动开发   时间:2014-10-22 18:40:42    阅读次数:174
Openstack Neutron OVS ARP Responder
ARP – Why do we need it?In any environment, be it the physical data-center, your home, or a virtualization cloud, machines need to know the MAC, or ph...
分类:其他好文   时间:2014-10-21 17:22:26    阅读次数:313
R语言学习笔记
參考:W.N. Venables, D.M. Smith and the R DCT: Introduction to R -- Notes on R: A Programming Environment for Data Analysis andGraphics,2003. http://baye...
分类:编程语言   时间:2014-10-21 16:50:51    阅读次数:381
Python学习日记(一)——IDLE、运算符
环境:win8.1+python2.7.8 一、名词解释: 1.IDLE:经常编程的同学相信对集成开发环境(Integrated Development Environment,IDE)应该非常熟悉了,如:Eclipse,Visual studio等。而IDLE是开发python程序的基本IDE(集...
分类:编程语言   时间:2014-10-21 15:15:57    阅读次数:204
android .txt文件的写入,读取,还有复制图片
txt文件的写入: 1 private void save() { 2 FileOutputStream fos = null; 3 String state = Environment.getExternalStorageState();// sd状态 4 ...
分类:移动开发   时间:2014-10-20 19:09:33    阅读次数:178
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!