`
文章列表
//提取字符串中的所有中文 var reg = /[\u4e00-\u9fa5]*/g; //g 全局变量   \u4e00-\u9fa5  Unicode字符集 var pval = arr[0].match(reg);//在 字符串的这个范围内查找 符合 reg条件的语句 兵提取出来 成为一个数组
一.Document对象相关1.读取XML文件,获得document对象.      SAXReader reader = new SAXReader();      Document   document = reader.read(new File("input.xml"));2.解析XML形式的文本,得到document对象.      String text = "<members></members>";      Document document = DocumentHelper.parseText(text);3.主 ...
-----鼠标滑动时间原来样式 xxx.xxx,xx,xxx 改编成 经度:xxx.xxx  纬度xx.xxx   //map.addControl(new OpenLayers.Control.MousePosition({element: $('location')})); map.events.register("mousemove", map, function(e) { var position = this.events.getMousePosition(e); var lonlat = map.getLonLat ...
再做struts2 开发的时候,碰到这样一个问题. 目录: struts2login |-src |---com |------UserLogin.java |---Test |------TestAction.java |-struts.xml   |-web |---Test |------test.jsp |---WEB-INF |---index.jsp   index.jsp 由于是在跟目录下 index.jsp的请求可以直接发送过去。 但是在Test文件夹下的form里的请求却发送不过去。老是说找不到action。 不知道原因。但是有解决办法了 ...
Eclipse   File ->New -> Project...  (Tomcat Project) 输入项目名称 -》 next ->  ...(optional) 填写 web -> finish   右键选中项目 -》 Build Path -》Configure Build Path -》 SOurce(删除列表里的选项) -》Add Folder... 选中src -> OK   在手动删除 项目里的bin 目录即可      
不多说了 直接上代码   package com.hjkj.action.infoAna.topicmap; import com.esri.arcgis.datasourcesfile.ShapefileWorkspaceFactory; import com.esri.arcgis.geodatabase.IFeature; import com.esri.arcgis.geodatabase.IFeatureClass; import com.esri.arcgis.geodatabase.IFeatureClassWrite; im ...
import java.io.File; import java.io.IOException; import com.esri.arcgis.datasourcesfile.ShapefileWorkspaceFactory; import com.esri.arcgis.geodatabase.FeatureClass; import com.esri.arcgis.geodatabase.Field; import com.esri.arcgis.geodatabase.Fields; import com.esri.arcgis.geodatabase.GeometryD ...

PL/SQL

1.如何导入一个*.dmp文件到Oracle数据库呢  首先打开PL/SQL数据库客户端,然后点击工具 》导入表 》Oracle导入 》操作下面的导入文件文本框即可。

Tomcat 配置成服务

    博客分类:
  • JAVA
打开cmd 首先用cmd进入tomcat下的bin目录下 输入 service.bat install 右击我的电脑 -》 管理 -》 服务 -》会有相应的tomcat服务   删除则跟添加服务一样 只不过后面的改成 service.bat remove

关于java的收集

    博客分类:
  • JAVA
获取java目录的路径 http://ahomeeye.iteye.com/blog/896534    java正则表达式教程 http://www.java3z.com/cwbwebhome/article/article8/Regex/Java.Regex.Tutorial.html#reg9_3 java读取Map集合的方法 http://yuexiaowen.iteye.com/blog/504929 关于获取地址的问题 <% String basePath = request.getScheme() + "s://" + requ ...
/** * 功能说明:处理地址,并返回根目录地址 * @param path 预处理的地址 * @return String */ public String processPath(String path){ //得到截取后的字符串 Pattern pattern=Pattern.compile("out/[^/]+/"); Matcher c=pattern.matcher(path); boolean bool=c.find(); String strPath=bool?c.group(0):"&qu ...
网上关于 gxt的配置地址 http://kowen.iteye.com/blog/360174
注意: -alias 后面的名字必须为计算机名称           生成的文件 tomcat.jkb  cas.cer 在jdk的bin目录下           下面图是操作的过程   第一步(不是必须) 删除已经存在的服务器端证书 如果jre目录下已经存在 服务器证书 需呀删除证书 输入如下命令删除 指定别名yanjzKey的证书 */ %JAVA_HOME%/bin/keytool -delete -alias yanjzKey -keypass changeit -keystore %JAVA_HOME%/JRE/LIB/SECURITY/CACERTS   第二步 生成 ...
  /** * 功能: 拷贝image从一个地址至另一个地址 * @param sourcePath * 图片初始生成地址 * @param toPath * 图片要复制到的地方 * @param FileName * 图片的名字 * @param FileN * 生成的文件夹名字 */ public void copyToOtherPath(String sourcePath,String toPath,String Fi ...
package Test; import java.io.*; import org.dom4j.*; import org.dom4j.io.*; public class xmlTest { public void writeXML(){ Document doc = org.dom4j.DocumentHelper.createDocument(); //创建节点操作对象 Element rootElement = doc.addElement("student"); ...
Global site tag (gtag.js) - Google Analytics