- 博客(24)
- 收藏
- 关注
原创 hadoop伪分布式安装
安装之前的准备:service iptables stop 防火墙临时关闭chkconfig iptables off 防火墙永久关闭修改主机名,主机名不能有横线、下划线vim /etc/sysconfig/networkHOSTNAME=abc(名字随意)source /etc/sysconfig/network 重新生效该文件vim /etc/hosts 当前主机名和ip映射...
2019-06-28 21:25:06 161
原创 mysql数据库表的复制
CREATE TABLE b LIKE a;INSERT b SELECT * FROM a;第一个命令是创建新的数据表 b ,并复制 a 的数据表结构。第二个命令是讲数据表 a 中的数据复制到新表 b 。
2019-06-17 19:41:58 975
原创 备份、恢复数据库
欢迎使用Markdown编辑器你好! 这是你第一次使用 Markdown编辑器 所展示的欢迎页。如果你想学习如何使用Markdown编辑器, 可以仔细阅读这篇文章,了解一下Markdown的基本语法知识。新的改变我们对Markdown编辑器进行了一些功能拓展与语法支持,除了标准的Markdown编辑器功能,我们增加了如下几点新功能,帮助你用它写博客:全新的界面设计 ,将会带来全新的写作体...
2019-06-17 09:53:51 95
原创 序列化与反序列化
Student stu = new Student(); stu.setName(""); stu.setAge(10); //序列化 对象--》字节 ObjectOutputStream oos = //装饰设计模式 new ObjectOutputStream(new FileOutputStream("p.data")); //将stu对象转换为字节 oos.writ...
2019-03-20 21:51:33 148
原创 将多个文件进行合并
Vector ver = new Vector(); //创建多个流 FileInputStream f1 = new FileInputStream("D:\\a.txt"); FileInputStream f2 = new FileInputStream("D:\\b.txt"); FileInputStream f3 = new FileInputStream("D:\\c.txt...
2019-03-20 21:32:59 307
原创 使用字节输入输出流进行拷贝
public static void main(String[] args) throws IOException { FileInputStream fis = new FileInputStream("D:\\Windows10禁用更新.bat"); FileOutputStream fos = new FileOutputStream("D:\\2.bat"); //先读取图片中的...
2019-03-20 20:47:24 342
原创 统计java代码的行数
// 定义变量,用于统计换行次数static int count = 0;public static void main(String[] args) throws Exception { //练习:统计java代码的行数 File file = new File("C:\\Users\\Administrator\\workspace"); count(file); Sy...
2019-03-20 20:21:51 492
原创 拷贝文件
先去读取目标文件,将读取的内容写入到新的文件中 FileReader fr = new FileReader("D:\\a.txt"); FileWriter fw = new FileWriter("D:\\b.txt"); //创建一个字符数组作为缓冲区 char[] chs = new char[1024]; //定义每次读取的长度 int len; //循环读...
2019-03-20 20:06:51 156
原创 输入一个字符串,获取每个字符出现的次数
Scanner sc = new Scanner(System.in); String str = sc.nextLine(); while(str.length() != 0){ //获取原字符串的长度 int oldLength = str.length(); //获取字符串的第一个字符 char c = str.charAt(0); //替换str中所...
2019-03-14 17:12:45 636
原创 从字符串中提取所有数字,并且对数字进行排序
public static void main(String[] args) { String str= "sdjfaeifhv34857"; //提取数字 String str1 = str.replaceAll("\\D", ""); System.out.println(str1); //将字符串转换为字符数组 char[] chs = str1.toCharArr...
2019-03-14 17:03:38 2938
原创 使用冒泡排序,对字符串进行升序排序
String[] strs = {"nua","sc","avb","adw","rt","gfe"}; //使用冒泡排序 对字符串进行升序排序 for(int i = 0; i < strs.length; i++){ for(int j = 0; j < strs.length-i; j++){ if(strs[j-1].compare
2019-03-12 21:58:05 3606
原创 输入一个字符串,统计字符重 复出现的次数
public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.nextLine(); System.out.println("请输入一个字符串"); //创建一个布尔数组,用于标记 boolean[] bs = new boolean[s.length(...
2019-03-12 21:48:33 756
原创 输入一个字符串,统计字符串 中出现的数字之和
public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = sc.nextLine(); char[] arr = str.toCharArray(); int sum = 0; for(char c :arr){ if(c >='0' &a...
2019-03-12 21:19:39 2676 1
原创 输入一个字符串以及两个数字,按照输入的数字对字符串进行截取。
public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = sc.nextLine(); char[] arr = str.toCharArray(); int end = sc.nextInt(); int begin = sc.nextInt();...
2019-03-12 21:14:11 798
原创 让用户输入一个字符串,统计字符串中大写字母、小写字母、数字、其他字符的个数。
public static void main(String[] args) {// 1.Scanner类获取用户输入的字符串 Scanner sc = new Scanner(System.in); String str = sc.nextLine(); // 2.创建4个变量,分别记录不同字符类型出现的个数 int count = 0; int bigCount = 0; in...
2019-03-12 21:04:18 27905
原创 拼接元素,区分String类+拼接字符串和 StringBuilder的append拼接的运行速度
public static void main(String[] args) { //定义一个数组 String s = ""; //开始计时 long begin = System.currentTimeMillis(); //使用for循环拼接数组 for(int i = 0; i&lt;100000;i++){ s += "a"; } //结束时间 long end =..
2019-03-12 20:12:50 423
原创 用java重写equals方法
public static void main(String[] args) {// 重写equals方法Person p = new Person();p.name = “迪丽热巴”;p.age= 20;Person p1 = new Person();p1.name= “古力娜扎”;p1.age=19;System.out.println(p.equals(p1));}}...
2019-03-12 19:44:52 346 2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人