
小 Case
iteye_16346
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
忘记了oracle的sys, system的密码怎么办
在数据库服务器命令行输入:sqlplus /nolog 回车(Enter)后再输入 connect /as sysdba 这样就连上数据库了。接下来的事会做了,重新设置密码。 C:\Documents and Settings\zyao>sqlplus /nolog SQL*Plus: Release 10.2.0.1.0 - Production on Tue Sep 14 1...2010-09-17 15:42:40 · 181 阅读 · 0 评论 -
How to use freetts create/generate a wave file
SingleFileAudioPlayer streams audio to a file. The SingleFileAudioPlayer doesn't write to the file until its close method is called. When an application calls setAudioPlayer on a voice, it ...2010-10-17 22:12:51 · 116 阅读 · 0 评论 -
BigDecimal格式化
工作中遇到BigDecimal格式化问题,手中无jdk手册,只好百度一下,这种问题,用百度还是找得到滴。 解决如下: /** * Fortmat BigDecimal while the number is too long. * for example: the param value = 1222222.222222, * a...2010-03-31 18:41:43 · 283 阅读 · 0 评论 -
RA layer request failed
一日, 用eclipse 同步SVN服务器宛然无法访问了: org.tigris.subversion.javahl.ClientException: RA layer request failed svn: Server sent unexpected return value (403 Forbidden) in response to OPTIONS request for 'https...原创 2010-05-06 16:26:06 · 223 阅读 · 0 评论 -
解决Dom4j中"The Node already has an existing parent"问题
常常需要在两个Document中互相复制Element,可是Dom4j中使用Element.add(Elemnet)方法就会出现出题的错误: "The Node already has an existing parent" 查看AbstractElement.java的源码,得到解决办法:调用Element的clone()方法。 Element a...原创 2012-03-05 15:54:55 · 1629 阅读 · 0 评论 -
tracert
Tracing route to some host. In command line, type tracert [Host] For example: tracert www.google.com C:\Users\zyao>tracert www.google.com Tracing route to www.l.google.com [17...原创 2012-03-29 09:35:39 · 149 阅读 · 0 评论 -
CreateProcess error=740, The requested operation requires elevation
CreateProcess error=740, The requested operation requires elevation WIN7 64位操作系统,帐户是域帐户。 在命令行调某些.exe的时候,报这个错.. 猜大概可能是权限问题。 解决方案:点击开始菜单-输入cmd-右击-以管理员身份运行。 在cmd窗口中切换到相应的目录,运行即可。 ...原创 2012-06-04 17:30:20 · 1590 阅读 · 0 评论