运用.NET Framework类来解析HTML文件、读取数据并不是最容易的。虽然你可以用.NET Framework中的许多类(如StreamReader)来逐行解析文件,但XmlReader提供的API并不是“取出即可用(out of the box)”的,因为HTML的格式不规范。你可以用正则...
分类:
Web程序 时间:
2014-06-15 23:23:58
阅读次数:
712
for ( decl : coll ){ statement}where decl is the declaration of each element of the passed collection coll and for which the statements specified are....
分类:
其他好文 时间:
2014-06-15 22:11:18
阅读次数:
295
1 using System.Reflection; 2 3 using System.Data.SqlClient; 4 5 6 7 8 9 TransactionSelectTableAdapter adapter = new Transacti...
分类:
数据库 时间:
2014-06-15 22:05:01
阅读次数:
327
1 index unique scan 效率最高,主键或唯一索引2 index fast full scan 读的最快,可以并行访问索引,但输出不按顺序3 index full scan 有顺序的输出,不能并行读索引。4 index range scan 在给定的区间查询5 index s...
分类:
其他好文 时间:
2014-06-15 19:41:17
阅读次数:
169
Android Studio简单介绍。Android Studio对比Eclipse,优缺点对比。Android Studio转型Eclipse可能性分析。...
分类:
移动开发 时间:
2014-06-15 19:10:06
阅读次数:
481
1、项目根目录(tomcat、web项目)String path = ServletActionContext.getServletContext().getRealPath("");System.out.println(path);想要获取图片存放的位置,则为String path = Servl...
分类:
其他好文 时间:
2014-06-15 16:27:14
阅读次数:
205
在Linux下编译链接程序时,如果不用‘-o’选项来指定输出文件名称,默认情况下就会输出名为‘a.out’的文件。为什么默认是‘a.out’而不是别的名称呢?这是一个历史遗留问题。
在早期的BSD文档里有下面的提示:
a.out —— 汇编程序和链接编辑输出格式。
可以看出它是一种输出格式,与EFL格式、二进制格式等是并列的。a.out是‘assembler output(汇编程...
分类:
编程语言 时间:
2014-06-15 07:43:46
阅读次数:
1134
修改配置文件创建加载的类public class ReminderAction implements IStartup { @Override public void earlyStartup() { System.out.println("start..."); }}
分类:
其他好文 时间:
2014-06-15 07:09:56
阅读次数:
184
import java.util.Scanner;public class Demo1 { public static void main(String[] args) { System.out.println("********** 请输入初始字符串 ************"); Scann.....
分类:
其他好文 时间:
2014-06-15 06:34:58
阅读次数:
275
今天将项目部署到Centos 6.3 x64上面的tomcat 7.0.54,访问链接出现了404错误。后来查看了/usr/local/apache-tomcat-7.0.54/logs/catalina.out 文件,出现了Error listenerStart 。org.apache.cat.....
分类:
其他好文 时间:
2014-06-14 23:44:17
阅读次数:
740