`
baby69yy2000
  • 浏览: 187672 次
  • 性别: Icon_minigender_1
  • 来自: 自己输入城市...
社区版块
存档分类
最新评论
文章列表
获取选中的普通页面上的文字,可以用下面的方法: <mce:script type="text/javascript"><!-- // 说明:获取页面上选中的文字 // 整理:http://www.CodeBit.cn function getSelectedText() { if (window.getSelection) { // This technique is the most likely to be standardized. // getSelectio ...
参考网址: http://blackwoodkane.spaces.live.com/Blog/cns!6279FA186F838628!649.entry http://www.javaworld.com.tw/jute/post/view?bid=9&id=44042&sty=1&tpg=1&age=0 首先要需要了解的是web容器默认编码是iso-8859-1,一个汉字占用两个字节,而在utf-8中一个汉字占用三个字节。所以在数据传递过程中,必须手动设定容器编码格式,否则会出现字符位丢失的情况。即3个字节变为两个字节,自然会变成乱码。 第一步,修改to ...
1.先安装PowerDesigner 12 下载PowerDesigner 12英文官方版: http://dl01.nbdown.net//Program/Sybase.PowerDesiner.v12.0.zip 2.只需将下面下载的这个powerdesigner12的破解文件,只需要把pdflm12.dll 这个文件复制到powerdesigner12的安装目录覆盖即可: 下载powerdesigner12的破解文件: http://ms.itpub.net/thread-765553-1-1.html 3. 运行PowerDesigner 12程序,点击Tools -> Lic ...
哈哈,编的很巧妙呀,学习了!!!! http://www.williamlong.info/archives/1830.html <script language="javascript"> function countChar(textareaName,spanName) { document.getElementById(spanName).innerHTML = 140 - document.getElementById(textareaName).value.length; } </script> 可以输入&l ...
这两天在赶小学期的作业,开发了一个小型的音乐网站,就两三千行,功能很简单,只能上传、下载歌曲,在线听歌,所谓在线听歌不过是在网页中放了一个对象,做这几个小功能遇到的最大问题就是中文乱码,经过一天上网查 ...
document对象execCommand的应用D-Position 允许通过拖曳移动绝对定位的对象。     AbsolutePosition 设定元素的 position 属性为“absolute”(绝对)。     BackColor 设置或获取当前选中区的背景颜色。     BlockDirLTR 目前尚未支持。     Block ...
aa.html <html> <head> <title></title> </head> <body> <p class="aaClass" id="aa" style="height:300px; border:1px solid black;">aa.html</p> </body> </html> <!DOCTYPE HTML PUBLIC "-//W3C//D ...
...

MySQL基础语句

    博客分类:
  • SQL
--设置mysql root密码 set password for 'root'@localhost=password('123'); 排序检索数据 ---------------------------------------------- --按价格升序(1 2 3) select name , price from Products order by price; --按价格降序(3 2 1) select name , price from Products order by price desc; --使用 order by和limit的组合,找出[ ...
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH(hh):mm:ss"); String b = df.format(new Date()); System.out.println(b); //2009-02-19 16(04):10:26
参考网址: 《IntelliJ IDEA 目录技巧》 http://www.blogjava.net/yifeng/archive/2008/08/27/224903.html Demo http://www.jetbrains.com/idea/training/demos.html \IntelliJ IDEA 8\bin\idea.exe.vmoptions ----------------------------------------- -Xms64m -Xmx256m -XX:MaxPermSize=92m -ea -server -Dsun ...

JDBC批处理功能

    博客分类:
  • JDBC
//批处理可以大幅提升增、删、改的速度 public class Batch { //测试 public static void main(String[] args) throws Exception { //create: 5281ms /*long start = System.currentTimeMillis(); for(int i=0; i < 100; i++) { create(i); } long end = System.currentTimeMillis(); System.out.println(&q ...
"daoconfig.properties"文件 UserDaoClass=com.jdbc.test.dao.impl.UserDaoImpl public class DaoFactory { private static UserDao userDao = null; private static DaoFactory instance = new DaoFactory(); private DaoFactory() { try { Properties prop = new Properties(); //InputS ...
注册驱动(只做一次) 建立连接(Connection) 创建执行 SQL的语句(Statement) 执行查询(executeQuery) 处理执行结果(ResultSet) 释放资源 //最简单的JDBC MySQL static void test() throws SQLException, ClassNotFoundException { //1.注册驱动 //DriverManager.registerDriver(new com.mysql.jdbc.Driver()); Class.forName("com.mysql.jdbc.Dr ...
alter table blog change created_time createdtime datetime; # 连接与断开服务器 mysql -h host -u user -p # host和user分别代表MySQL服务器运行的主机名和MySQL账户用户名 # 创建并选择数据库 create database mydata; use mydata # 显示数据库 show databases; # 显示表 show tables; # 查看表 desc 表的名字; # 客户表 create table customers ( cust_id ...
Global site tag (gtag.js) - Google Analytics