会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
艺言弈行
曲则全,枉则直。夫唯不争,故天下莫能与之争
博客园
首页
新随笔
联系
管理
上一页
1
···
26
27
28
29
30
31
32
33
34
···
40
下一页
2014年6月26日
SQL——连接查询
摘要: 以mysql为例:新建两张表table1和table2CREATE TABLE `table1` ( `id` int(11) NOT NULL auto_increment, `name` varchar(20) default NULL, PRIMARY KEY (`id`) ) ...
阅读全文
posted @ 2014-06-26 10:50 艺言弈行
阅读(360)
评论(0)
推荐(0)
2014年5月28日
mysql密码忘记或者不知道,怎么办?
摘要: 运行cmd;输入mysql回车,如果成功,将出现MySQL提示符 >连接权限数据库>use mysql; (>是本来就有的提示符,别忘了最后的分号)修改改密码:> update user set password=password("123456") where user="root"; (别忘了最...
阅读全文
posted @ 2014-05-28 14:17 艺言弈行
阅读(477)
评论(0)
推荐(0)
2014年4月10日
图片切割
摘要: package com.tb.image; import java.awt.Rectangle; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileInputStream; import java
阅读全文
posted @ 2014-04-10 11:48 艺言弈行
阅读(404)
评论(0)
推荐(0)
Java——Image 图片合并
摘要: 1.合并图片package com.tb.image;import java.awt.Image;import java.awt.image.BufferedImage;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import javax.imageio.ImageIO;import com.sun.image.codec.jpeg.JPEGCodec;import com.sun.image.codec.jpeg.JPEGImageEncoder;/** * 图片拼接 * 把多张
阅读全文
posted @ 2014-04-10 11:44 艺言弈行
阅读(5801)
评论(0)
推荐(1)
Java——FIle:
摘要: 1.读取文件夹中的文件/** * 读取图片文件 * @param imgPath 文件所在的文件夹绝对路径 * @return * @throws FileNotFoundException */ public static List readImg(String imgPath)throws FileNotFoundException{ System.out.println("----------------------------读取start--------------------------"); List ab...
阅读全文
posted @ 2014-04-10 11:36 艺言弈行
阅读(355)
评论(0)
推荐(0)
上一页
1
···
26
27
28
29
30
31
32
33
34
···
40
下一页