上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 78 下一页
摘要: 通过windows server使用frp软件实现内网穿透环境:一台公网win server服务器,linux同理只不过运行方式不同 1.下载frp 在github中下载frp下载链接: https://github.com/fatedier/frp/releases如图中箭头指示为windows环 阅读全文
posted @ 2022-04-29 09:31 木子欢儿 阅读(456) 评论(0) 推荐(0) 编辑
摘要: SellTicket.java package maipiao; public class SellTicket implements Runnable { private static int tickets = 100; private Object obj = new Object(); pr 阅读全文
posted @ 2022-04-28 20:24 木子欢儿 阅读(25) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文
posted @ 2022-04-27 20:56 木子欢儿 阅读(67) 评论(0) 推荐(0) 编辑
摘要: game.txt count=0 GameNumber.java package LearnJava15; import java.util.Random; import java.util.Scanner; public class GuessNumber { private GuessNumbe 阅读全文
posted @ 2022-04-27 20:25 木子欢儿 阅读(194) 评论(0) 推荐(0) 编辑
摘要: Student.java package LearnJava15; import java.io.Serializable; public class Student implements Serializable { private String name; private int age; pu 阅读全文
posted @ 2022-04-27 11:31 木子欢儿 阅读(33) 评论(0) 推荐(0) 编辑
摘要: package LearnJava15; import java.io.*; public class CopyFileDemo { public static void main(String[] args) throws IOException { BufferedReader br=new B 阅读全文
posted @ 2022-04-27 11:05 木子欢儿 阅读(33) 评论(0) 推荐(0) 编辑
摘要: package LearnJava15; import java.io.*; public class CopyFoldersDemo { public static void main(String[] args) throws IOException { // 数据源 File srcFile= 阅读全文
posted @ 2022-04-26 19:12 木子欢儿 阅读(29) 评论(0) 推荐(0) 编辑
摘要: package LearnJava15; import java.io.*; public class CopyFolderDemo { public static void main(String[] args) throws IOException { // 创建数据源目录对象 File src 阅读全文
posted @ 2022-04-26 19:11 木子欢儿 阅读(27) 评论(0) 推荐(0) 编辑
摘要: # FilesBatchRename.py # 导入os库 import os # 图片存放的路径 path = r"D:/temp" # 遍历更改文件名 num = 1 for file in os.listdir(path): os.rename(os.path.join(path,file), 阅读全文
posted @ 2022-04-26 16:05 木子欢儿 阅读(38) 评论(0) 推荐(0) 编辑
摘要: python版本: 3.8 问题:在python运行代码: import time print(time.clock()) 出现错误 : AttributeError module 'time' has no attribute 'clock' 原因 : Python time.clock在Pyth 阅读全文
posted @ 2022-04-25 09:55 木子欢儿 阅读(642) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 78 下一页