通过拍照或者从相册里选择图片通过压缩并上传时很多应用的常用功能,记录一下实现过程一:创建个临时文件夹用于保存压缩后需要上传的图片 /** * path:存放图片目录路径 */ private String path = Environment.getExternalStorag...
分类:
移动开发 时间:
2014-10-24 18:45:38
阅读次数:
1394
今天做项目时往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
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
代码:1 string curAppPath = System.IO.Directory.GetParent(System.Environment.CurrentDirectory).Parent.FullName; 首先通过 System.Environment.CurrentDirecto...
File path1 = Environment.getExternalStoragePublicDirectory( ??????? ??Environment.DIRECTORY_ALARMS);?????????????? /mnt/sdcard/Alarms ???? File path2 = Environment.getEx...
分类:
移动开发 时间:
2014-10-22 18:40:42
阅读次数:
174
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
參考: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
环境:win8.1+python2.7.8 一、名词解释: 1.IDLE:经常编程的同学相信对集成开发环境(Integrated Development Environment,IDE)应该非常熟悉了,如:Eclipse,Visual studio等。而IDLE是开发python程序的基本IDE(集...
分类:
编程语言 时间:
2014-10-21 15:15:57
阅读次数:
204
txt文件的写入: 1 private void save() { 2 FileOutputStream fos = null; 3 String state = Environment.getExternalStorageState();// sd状态 4 ...
分类:
移动开发 时间:
2014-10-20 19:09:33
阅读次数:
178