上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 66 下一页
摘要: 修改一个用户的密码,网上搜到的命令为如下 1 mysql> update user set password=password(“新密码”) where user=”用户名”; 执行后报错 ERROR 1054(42S22) Unknown column 'password' in ‘field l 阅读全文
posted @ 2020-03-14 20:56 Mr_伍先生 阅读(6402) 评论(0) 推荐(0) 编辑
摘要: systemctl管理Redis启动、停止、开机启动 1. 创建服务用service来管理服务的时候,是在/etc/init.d/目录中创建一个脚本文件,来管理服务的启动和停止; 在systemctl中,也类似,文件目录有所不同,在/lib/systemd/system目录下创建一个脚本文件redi 阅读全文
posted @ 2020-03-14 20:48 Mr_伍先生 阅读(8163) 评论(2) 推荐(0) 编辑
摘要: public class iterableCount { public static int iterableCount(Iterable<?> i) { int count = 0; Iterator<?> it = i.iterator(); while (it.hasNext()) { it. 阅读全文
posted @ 2020-02-12 19:54 Mr_伍先生 阅读(5904) 评论(1) 推荐(1) 编辑
摘要: 今天在调试一个JAVA程序的时候出现了如下异常错误信息: java.lang.ArithmeticException: Non-terminating decimal expansion; no exact representable decimal result。 发现报错的语句是: 1 fun. 阅读全文
posted @ 2020-02-12 19:49 Mr_伍先生 阅读(519) 评论(0) 推荐(0) 编辑
摘要: package org.tinygroup.demo; public class Timing { public static double round(double value) { return Math.round(value * 10.0) / 10.0;// 利用Math类的round方法 阅读全文
posted @ 2020-02-04 16:27 Mr_伍先生 阅读(707) 评论(3) 推荐(0) 编辑
摘要: package com.mingrisoft.generic; import java.util.Arrays; public class BinSearch { public static <T extends Comparable<? super T>> int search(T[] array 阅读全文
posted @ 2020-02-04 16:10 Mr_伍先生 阅读(329) 评论(0) 推荐(0) 编辑
摘要: package com.lzw; import java.awt.EventQueue; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; impo 阅读全文
posted @ 2020-02-04 15:36 Mr_伍先生 阅读(1089) 评论(0) 推荐(0) 编辑
摘要: import java.text.DecimalFormat; import java.util.Scanner; import javax.swing.JOptionPane; /** * 金额转换 * * @author YongQiang Lee */ public class Convert 阅读全文
posted @ 2020-02-04 14:41 Mr_伍先生 阅读(371) 评论(0) 推荐(0) 编辑
摘要: import java.awt.BorderLayout; import java.awt.EventQueue; import java.util.ArrayList; import java.util.List; import javax.swing.JFrame; import javax.s 阅读全文
posted @ 2020-02-03 21:39 Mr_伍先生 阅读(874) 评论(0) 推荐(0) 编辑
摘要: import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.EventQueue; import java.awt.FlowLayout; import java.awt.event.ActionEvent; im 阅读全文
posted @ 2020-02-03 21:26 Mr_伍先生 阅读(691) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 66 下一页