自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 Java中级-移除某个java文件中的所有注释(IO)

package File;import java.io.BufferedReader;import java.io.File;import java.io.FileReader;import java.io.FileWriter;import java.io.IOException;import java.io.PrintWriter;public class Remove { public static void removeComments(File javaFile) {//移除注

2021-03-08 16:35:26 448

原创 关于psv破解中finalhe显示“sha256不匹配,请检查网络状态”的问题的解决办法!

我们在破解psv途中的第一步会遇到这个问题,无论是用WiFi方式连接还是使用usb数据线连接,其实这个问题很少见,今天给大家讲解两个比较有用的解决办法,亲测有效!一、若是使用WiFi方式连接,那么大概率就是网络的原因,pc和psv处于同一WiFi下,遇到这个问题,最直接有效的方法是换网络,也就是WiFi,可以试试手机热点,或者邻居家的WiFi;其次可以试着改下DNS,谷歌的dns。推荐的办法还是前者,因为后者还是会比前者有大概率失败。二、这个问题究其最根本的原因还是因为finalhe里不包含我们破解所.

2021-02-28 23:36:38 1707 3

原创 Java基础-数组工具类arrays常用方法

//数组的复制 int a[] = new int[] { 188, 423, 79, 123, 56, 9 }; // copyOfRange(int[] original, int from, int to) // 第一个参数表示源数组 // 第二个参数表示开始位置(取得到) // 第三个参数表示结束位置(取不到) int[] b = Arrays.copyOfRange(a, 0, 3); for (int i =

2021-02-27 12:59:06 219 3

原创 Java基础-数组的复制

public class HelloWorld{ public static void main(String[] args){ int[] a = new int[5]; a[0] = (int) (Math.random() * 100); a[1] = (int) (Math.random() * 100); a[2] = (int) (Math.random() * 100); a[3] = (int) (Math.random() * 10

2021-02-27 12:39:17 124

原创 Java基础-增强for循环找到随机数组中最小值

public class HelloWorld{ public static void main(String[] args){ int[] a = new int[5]; a[0] = (int) (Math.random() * 100); a[1] = (int) (Math.random() * 100); a[2] = (int) (Math.random() * 100); a[3] = (int) (Math.random() * 10

2021-02-27 12:28:55 418

原创 Java基础-从一个随机数组中用冒泡排序法找出最小值

public class HelloWorld{ public static void main(String[] args){ int[] a = new int[5]; a[0] = (int) (Math.random() * 100); a[1] = (int) (Math.random() * 100); a[2] = (int) (Math.random() * 100); a[3] = (int) (Math.random() * 10

2021-02-25 16:31:48 237

原创 Java基础-用选择排序法找出随机数组中的最小值

public class HelloWorld{ public static void main(String[] args){ int[] a = new int[5]; a[0] = (int) (Math.random() * 100); a[1] = (int) (Math.random() * 100); a[2] = (int) (Math.random() * 100); a[3] = (int) (Math.random() * 10

2021-02-25 16:27:23 211

原创 java数组-从一个随机数组中找出最小值

java数组-从一个随机数组中找出最小值public class HelloWorld{public static void main(String[] args){int[] a = new int[5];a[0] = (int) (Math.random() * 100);a[1] = (int) (Math.random() * 100);a[2] = (int) (Math.random() * 100);a[3] = (int) (Math.random() * 100);a[4]

2021-02-25 16:06:40 412

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除