`
文章列表

jacob office转pdf

     注意调用前一定要先安装office,然后将附件对应的jar包拷贝至tomcat或者项目lib目录,再将附件中对应系统的dll文件拷贝至系统system32目录,然后调用时穿入转换前的文件路径和转换后的文件路径即可   public boolean word2PDF(String inputFile, String pdfFile) { try { // 打开word应用程序 ActiveXComponent app = new ActiveXComponent("Word.Application"); // 设置word不可见 ...
  最近开发网站视频同步播放功能,需求将支持所有视频格式转换为网页识别格式,目前有MP4和ogv格式基本兼容各大浏览器,下面的代码是在cmd下调用ffmpeg.exe转换视频格式用的。   --mp4 ffmpeg.exe -i a.mp4 -g 30 -s 800x600 b.mp4 --ogv ffmpeg.exe -y -i a.ogv -b 1500k -vcodec libtheora -acodec libvorbis -ab 160000 -g 30 -s 800x600 b.ogv       注意,使用java调用时不要尝试使用输出流读取转换 ...
最近做一个项目中用到websocket技术,刚开始运行的好好的。昨天发送文本字节比较多时出现异常   The decoded text message was too big for the output buffer and the endpoint does not support partial messages  看了tomcat中有提到 If the application does not define a MessageHandler.Partial for incoming text messages, any incoming text messages must ...
最近项目用到复制分享功能   最开始百度了下,使用框架ZeroClipboard实现:该框架基于flash实现,不能满足所有用户   今天谷歌了下发现了这个工具,兼容各大浏览器 https://clipboardjs.com/   在此标注一下,顺便补充一句:提高英语能力,上谷歌找资料才是王道...

Ngnix

#Ngnix 伪静态配置 location / { index index.html; rewrite "^.*/([0-9]*)-*([A-O]*)-*([P0-9\_0-9]*)-*query\.html/(.*)$" /goods.do?method=queryGoods&pageIndex=$1&order=$2&price=$3&keyWords=$4 last; root J:/html; }
    1、首先确保安装JDK、APACHE、JBOSS2、打开apache安装目录找到conf/httpd.conf文件,在文档中引入mod-jk.conf文件   Include conf/mod-jk.conf   3、在该目录下建立mod-jk.conf文件,内容如下:   #Load mod_jk module # Specify the filename of the mod_jk lib LoadModule jk_module modules/mod_jk.so # Where to find workers.properties JkWorker ...

SVN 清除版本控制

    博客分类:
  • SVN
@echo On @Rem 删除SVN版本控制目录 @PROMPT [Com] @for /r . %%a in (.) do @if exist "%%a\.svn" rd /s /q "%%a\.svn" @Rem for /r . %%a in (.) do @if exist "%%a\.svn" @echo "%%a\.svn" @echo Mission Completed. @pause  将上面的代码做成一个bat文件、放入要取消版本控制文件夹的根目录执行即可

Jboss配置虚拟目录

今天做一个附件服务器,可通过代码修改附件、故不想将项目发布至服务器默认的路径。 发现了两种方法:   找到路径:jboss\server\default\deploy\jboss-web.deployer\server.xml,在其HOST节点下增加如下节点<Context path="/项目名" docBase="路径" debug="1" reloadable="true"/>,值得注意的是改方法的路径需写至虚拟目录下(至WebContent) 找到路径:jboss\server\defa ...
1、将字符进行指定格式的转码 /** * 将请求的URL进行指定格式的编码 */ function encodeURL(sStr) { return escape(sStr).replace(/\+/g, '%2B').replace(/\"/g, '%22').replace( /\'/g, '%27').replace(/\//g, '%2F'); } 2、后台处理、将指定格式的字符解码 public static String unEscape(String src) { if (src==null || " ...
一般事件 事件        浏览器支持        描述 onClick        IE3|N2|O        鼠标点击事件,多用在某个对象控制的范围内的鼠标点击 onDblClick        IE4|N4|O        鼠标双击事件 onMouseDown        IE4|N4|O ...
  关闭输入法:                style="ime-mode:disabled"              <input type="text" name="textfield" style="ime-mode:disabled">   禁止Past               onpaste="return false"            <input type="text" name="textf ...
out.println("今天是:"+new SimpleDateFormat("yyyy-MM-dd E").format(new Date()));
URI uri =  this.getClass().getClassLoader().getResource("com/pojo/com.xml").toURI(); File file=new File(uri.getSchemeSpecificPart().substring(5));
绝对COOL!
function SearchHighlight(mytag) { if (!document.createElement) { return; } var q = "{{$q}}";//要高亮显示的关键字 var l = document.getElementsByTagName(mytag); if("" == q) return; words = unescape(q.replace(/+/g,' ')).split(/s+/); for (w=0;w& ...
Global site tag (gtag.js) - Google Analytics