/**
* 执行挂载命令,返回挂载的地址。然后将地址解析
*/
private void getExtSDCardPath() {
try {
Runtime runtime = Runtime.getRuntime();
Process proc = runtime.exec("mount");
InputStream is = proc.getInputStre...
分类:
其他好文 时间:
2014-08-01 13:39:31
阅读次数:
193
C#鼠标拖动任意控件(winform)分类:c#2011-08-15 22:51178人阅读评论(0)收藏举报winformc#userwindowsobjectapi 1 using System.Runtime.InteropServices; 2 //并为控...
分类:
其他好文 时间:
2014-08-01 10:43:01
阅读次数:
193
两篇文章有助于学习Attribute特性的概念。http://blog.csdn.net/byondocean/article/details/6802111http://www.cnblogs.com/JimmyZhang/archive/2008/01/27/1055254.html
分类:
Web程序 时间:
2014-08-01 06:58:41
阅读次数:
223
在linux系统下长时间进行性能测试,连续几次发现服务器假死无法连接上的情况,无奈只能重启服务器。在测试路径下发现hs_err_pid17285.log文件,打开文件查看其主要内容如下:# There is insufficient memory for the Java Runtime Environment to continue.# Cannot create GC thread. Out...
分类:
编程语言 时间:
2014-07-31 23:57:00
阅读次数:
641
一、节点层次
1、node类型
nodeName、nodeValue 以及 nodeType 包含有关于节点的信息。
每个节点都有一个nodeType属性
值-元素类型
1-ELEMENT
2-ATTRIBUTE
3-TEXT
4-CDATA
5-ENTITY REFERENCE
6-ENTITY
7-PI (processing instruction...
分类:
编程语言 时间:
2014-07-31 20:51:37
阅读次数:
254
using System.Runtime.InteropServices; using IWshRuntimeLibrary;// 添加引用:COM下Windows Script Host Object Model public bool Createlnk() { ...
分类:
Web程序 时间:
2014-07-31 19:57:17
阅读次数:
309
我们已经有了一个Javaweb应用,现在要实现对报表的集成我的应用是这个样子的 说明: 1) 这里使用的是birt4.4版本的, 下载birt-runtime-4.4.zip(在官方下载),然后将birt.war解压,可以看到 logs report scriptlib webcontent WE....
分类:
Web程序 时间:
2014-07-31 12:45:06
阅读次数:
347
规则1 指定线程名 用于查看线程信息规则2使用Thread对象的setUncaughtExceptionHandler方法注册Runtime异常的处理者(v1.5+)说明:Java多线程程序中,所有线程都不允许抛出未捕获的checked exception,也就是说各个线程需要自己把自己的check...
分类:
编程语言 时间:
2014-07-30 23:26:05
阅读次数:
384
Java存在三种可抛出结构(throwable):受检异常(checked exception)、运行时异常(runtime exception)和错误(error)。使用原则是:1、如果期望调用者能够恢复,则应该使用受检异常。抛出受检异常,可以强迫调用者在一个catch子句中处理该异常,或者继续向...
分类:
其他好文 时间:
2014-07-30 23:21:15
阅读次数:
317
属性过滤(Attribute Filters)的内容就是html元素中的属性其包括以下几个选择器:[attribute][attribute=value][attribute!=value][attribute^=value][attribute$=value][attribute*=value][...
分类:
Web程序 时间:
2014-07-30 20:34:54
阅读次数:
209