上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
摘要: java实现可安装的exe程序 https://www.cnblogs.com/lsy-blogs/p/7668425.html 通过编写Java代码,实现可安装的exe文件的一般思路: 1、在eclipse中创建java项目,然后编写Java代码,将编写好的Java项目导出一个.jar格式的jar 阅读全文
posted @ 2018-04-10 21:51 celineluo 阅读(592) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_28859405/article/details/52562131 这是我以前在百度文库写的一篇文章,主要讲解在eclipse中安装windowbuder插件让java也能像c++那样进行可视化开发,废话不多说,直接开始 Window builder 阅读全文
posted @ 2018-04-10 21:45 celineluo 阅读(3140) 评论(0) 推荐(0) 编辑
摘要: 如何让mysql数据库允许被远程连接访问?就是从其他的电脑连接我的电脑上的mysql 原创 2013年06月04日 14:07:45 阅读 22587 第一:更改 “mysql” 数据库里的 “user” 表里的 “host” 项,从”localhost”改称'%'。 或者新加条记录,“host” 阅读全文
posted @ 2018-04-10 14:11 celineluo 阅读(145) 评论(0) 推荐(0) 编辑
摘要: System.in.read()可以实现输入字符,返回字符的Unicode码,但是缺点是只能输入一个字符 System.in.read() 返回的是输入数值的 ASKII 码(一个 int 整数)。 如果要求输入与输出的一致的话: 通常情况下,你会用readLine( )一行一行地读取输入,因此要把 阅读全文
posted @ 2018-04-08 23:27 celineluo 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 归纳: 编码大小支持语言 ASCII1个字节英文 Unicode2个字节(生僻字4个)所有语言 UTF-81-6个字节,英文字母1个字节,汉字3个字节,生僻字4-6个字节所有语言 具体解释: 最早只有127个字母被编码到计算机里,也就是大小写英文字母、数字和一些符号,这个编码表被称为ASCII编码, 阅读全文
posted @ 2018-04-08 18:29 celineluo 阅读(747) 评论(0) 推荐(0) 编辑
摘要: create table table1(name char(50),total int ) insert into table1 (name,total) values('A',200);insert into table1 (name,total) values('B',1000); mysql> 阅读全文
posted @ 2018-02-27 16:56 celineluo 阅读(1054) 评论(0) 推荐(0) 编辑
摘要: 1 package com.jdk7.chapter5; 2 3 import java.security.MessageDigest; 4 import java.security.NoSuchAlgorithmException; 5 6 public class PassWord { 7 //该字符串数组元素与转换后的十六进制数一一对应 8 privat... 阅读全文
posted @ 2018-02-24 20:26 celineluo 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1 package com.jdk7.chapter5; 2 3 public class StringAlignTest { 4 //用于默认构造函数中对齐方式,以及switch时的case 5 public static final int LEFT = 0; 6 public static final int CENTER = 1; 7... 阅读全文
posted @ 2018-02-24 00:04 celineluo 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 1 package com.jdk7.chapter5; 2 3 import java.io.UnsupportedEncodingException; 4 5 public class ChangeCharsetTest { 6 //公共的唯一静态变量 7 public static final String US_ASCII = "US-ASCII"; ... 阅读全文
posted @ 2018-02-23 21:55 celineluo 阅读(618) 评论(0) 推荐(0) 编辑
摘要: 1 package com.jdk7.chapter5; 2 3 /** 4 * 仅能校验15位或18位身份证号的校验码 5 * @author Administrator 6 * 7 */ 8 public class IDCardTest { 9 private static final int[] weigth = new int[] {7,9,10,5... 阅读全文
posted @ 2018-02-23 20:35 celineluo 阅读(555) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页