`
zhouxianglh
  • 浏览: 268886 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论
文章列表
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset ...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>JQuery-study</title> <script type="text/javascript" src=" ...
具体不说了,今天要装Eclipse 时发现MyEclipse 官网无法访问,就找了这个下载地址.   Linux 下 MyEclipse 7.5  *86-32bit 下载: http://downloads.myeclipseide.com/downloads/products/eworkbench/7.0/myeclipse-7.5.0-linux-gtk-x86.tgz   Linux 下 MyEclipse 8.5  *86-32bit 下载: http://downloads.myeclipseide.com/downloads/products/eworkbench/g ...
select * from user_tables; drop table t_user_role; drop table t_user; drop table t_role; drop sequence user_seq; create sequence user_seq--建立序列(自动增长列) increment by 1 --自增系数 start with 1 --初始值 --maxValue 最大值,noMaxValue 无最大值 --minValue 最小值,nominValue 无最小值 --cycle 循环取值 ,nocycle 不循环取值 --cach ...
JSP 代码: <SCRIPT type="text/javascript" src="js/jquery-1.4.1.js"></script> <SCRIPT type="text/javascript"> function clickButton() { var url = 'system/ajaxRequest.action'; var params = { ...
关于Nutch1.0 导入Eclipse http://www.iteye.com/topic/525839   给了详细具体的说明   1  Nutch1.0 抓取类package org.apache.nutch.fetcher.Fetcher; src\java\org\apache\nutch\fetcher\Fetcher.java 它有6个内部类,其中FetcherThread.run() 负责抓取 2  nutch-1.0.job  因为它的原因,Nutch 要在Cygwin 下运行.和Nutch-1.0.jar没有直接关系.nutch-1.0.job 是通过 buil ...
1 nutch1.0 的配置 环境准备: 1.1. 下载NUTCH 1.0 推 荐使用国内的镜像站点: http://labs.xiaonei.com/apache-mirror/lucene/nutch/ 1.2. 环境变量 添加:NUTCH_JAVA_HOME 指向JRE所在路径 1.3.  准备windows下的Linux虚 拟环境,这里使用“Cygwin”下载地址: http://www.cygwin.com/setup.exe 配置过程 1.4. 解压NUTCH 1.0,如C:\nutch 1.5. 在C:\nutch 下新建路径urls\并 新建文件nutch ...
参考了http://www.iteye.com/topic/460152 几乎是照着例子做的,遇到以下困难 1 error LNK2001: unresolved external symbol __imp__JNI_CreateJavaVM@12  这是因为没有连接到 JVM.lib 库导致的. 一开始使用工具DEV C++,但它在windows 下无完连接.lib 库,改用VC++ 解决了问题(工程-设置-连接)。 2  JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args);  创建不了。这里和之前Java使用DL ...
http://blog.csdn.net/kenera/archive/2009/02/16/3895343.aspx 给了极大的指导。 说说我的操作过程吧 1 MyEclipse 里新建Java 项目......主要代码如下: package com.isw2.jni; public class JNIStudy { { System.loadLibrary("testJNI");//加载DLL 文件,后缀因为windows 和linux 不同这里由系判断 } public native void display();//native 指 ...
  C:Documents and SettingsAdministrator>sqlplus SQL*Plus: Release 9.0.1.0.1 - Production on 星期一 2月 16 17:26:46 2009 (c) Copyright 2001 Oracle Corporation.  All rights reserved. 请输入用户名:  /as sysdba 连接到: Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production With the Part ...
URL的使用 url = new URL("http://www.google.cn"); HttpURLConnection httpUrl = (HttpURLConnection) url .openConnection();//打开 URL 获取 HTTP 特定功能的 URLConnection BufferedReader br = new BufferedReader(new InputStreamReader( httpUrl.getInputStream()));//读取文 ...
下面是一个用超链打开QQ临时对话框的代码 <html> <head> <style type="text/css"> <!-- .pAlert { font-family: "宋体"; font-size: 14px; color: #FF00FF; } .pInfo { font-family: Arial; font-size: 14px; color: #0000FF; } --> </style> <title>花儿</tit ...
http://kenter1643.iteye.com/blog/306649 的资料给了极大的帮助   1 JML 下载地址:http://sourceforge.net/projects/java-jml/ 2 JML 相关地址:http://sourceforge.net/apps/trac/java-jml 3 代码. 请注意 173,174,175行.为指定用户发送消息.和之前代码78行多了窗口关闭。 package com.isw2.msn; import java.text.SimpleDateFormat; import java.util.Date; imp ...
set statistics time on--开启客户端分析 on/off set nocount on--不返回计数 on/off set statistics profile off--用于分析SQL 语句 on/off use master go if exists(select * from sysdatabases where name = 'msstudy') drop database msstudy go create database msstudy go use msstudy go create table t_user( userid ...
drop database if exists mysqlstudy; create database if not exists mysqlStudy; use mysqlstudy; create table t_user( userid int AUTO_INCREMENT, userName varchar(20), primary key (userid) ); create table t_role( roleid int auto_increment, roleName varchar(20) not null, primary key ...
Global site tag (gtag.js) - Google Analytics