private void button1_Click(object sender, EventArgs e) { var path=Environment.GetFolderPath(Environment.SpecialFolder.CommonApplica...
分类:
移动开发 时间:
2015-02-03 14:45:37
阅读次数:
206
首先在Windows下安装jdk,在dos下输入命令:C:\Users\Administrator>java -version出现java version "1.6.0_12"Java(TM) SE Runtime Environment (build 1.6.0_12-b04)Java HotSp...
分类:
其他好文 时间:
2015-02-03 12:33:14
阅读次数:
134
Xilinx Platform Studio (XPS)XPS provides an integrated environment for creating software and hardware specification flows for embedded processor syste...
分类:
其他好文 时间:
2015-01-31 16:04:42
阅读次数:
198
“从relocate_code回到_main中,接下来是main最后一段代码”也就是arch/arm/lib/crt0.S文件中: b relocate_codehere://从这里开始u-boot已经在重定位的地方运行了/* Set up final (full) environment */ bl c_runtime_cpu_setup /* we still call ol...
分类:
其他好文 时间:
2015-01-31 08:21:13
阅读次数:
198
参考https://source.android.com 1.配置开发环境 Initializing a Build Environment 编译Android4.4.4要求使用64bit系统.所以我在虚拟机上装了一个Ubuntu 14.04 64bit. 首先安装jdk,andorid官网提供的安...
分类:
移动开发 时间:
2015-01-31 00:15:59
阅读次数:
193
1、判断sd卡是否存在 ? ?boolean sdCardExist = Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED); ? 2、TextView部分文字设置颜色 ? ?TextView tv = new TextView(th...
分类:
移动开发 时间:
2015-01-30 17:54:12
阅读次数:
213
This document is from my evernote, when I was still at baidu, I have a complete hadoop development/Debug environment. But at that time, I was tired of...
分类:
系统相关 时间:
2015-01-30 15:28:07
阅读次数:
294
环境交待:
Linux 6.3
Oracle Rac 11.2.0.4
[root@web1 grid]# /u01/app/11.2.0/grid/root.sh
Performing root user operation for Oracle 11g
The following environment variables are set...
分类:
数据库 时间:
2015-01-29 22:37:01
阅读次数:
1805
下载Microsoft Visual C++ 6.0请点击这里:VC 6.0下载(包括中文版英文版)(支持Win7和XP)首先,我们要进入Microsoft Visual C++集成开发环境(Integrated Develop Environment,简称 IDE),双击图标即可。进入以后,我们可...
分类:
编程语言 时间:
2015-01-29 21:03:46
阅读次数:
214
原文链接1 原文链接2
1.进程的环境变量
每个进程都有一个与它关联的环境块(environment block),这是在进程地址空间内分配的一块内存,其中包含字符串类似于:
=::=::\...
VarName=VarValue\0...
\0
除第一个=::=::\外,块中可能还有其他字符串是以等号开头的,这种字符串不作为环境变量使用。
访问环境块...