// FileName: HelloWorld.java public class HelloWorld { // Java 入口程序,程序从此入口 public static void main(String[] args) { System.out.println("Hello,World!") ...
分类:
其他好文 时间:
2020-11-13 12:48:52
阅读次数:
5
/y overwrite existing destination files without prompting 目标存在此文件时,取消默认提示是否覆盖 /s 递归copy,默认只copy src下的文件 /i dst目录不存在时,创建dst目录,否则会提示如下 /e 默认不会copy空目录,/e ...
分类:
其他好文 时间:
2020-11-13 12:18:52
阅读次数:
7
BigInteger类的概念 (1)基本概念 若希望表示比long类型范围还大的整数数据,则需要借助java.math.BigInteger类型描述。 (2)常用的方法 biginteger实现加减乘除区域: package com.lagou.task11; import java.math.Bi ...
分类:
其他好文 时间:
2020-11-12 14:15:35
阅读次数:
8
【转】 springBoot(3) 目录结构,文件上传 目录结构,文件上传 一、目录结构 1、目录讲解 src/main/java:存放代码 src/main/resources static: 存放静态文件,比如 css、js、image, (访问方式 http://localhost:8080/ ...
分类:
编程语言 时间:
2020-11-12 14:11:48
阅读次数:
13
1.密码文件位置: D:\oracle\product\11.2.0\dbhome_1\database 存在密码文件: orapwora11g.ora,前人建的。 接收后,sys和system以DBA身份不能登录报用户名和密码错误。普通用户可正常登录。 SQL>show parameter pas ...
分类:
数据库 时间:
2020-11-12 13:55:03
阅读次数:
12
在WPF中。通过设置控件的tabindex值。通过获取当前光标所在的控件。然后下移 在xaml里面自定义控件的tabindex值 System.Windows.Controls.TextBox t = Keyboard.FocusedElement as System.Windows.Control ...
分类:
移动开发 时间:
2020-11-12 13:48:57
阅读次数:
17
1.system()函数 头文件 #include <stdlib.h> 函数定义 int system(const char * string); 函数说明:通过linux命令 man 3 system 可以看到该函数的作用是:执行shell命令 system()会调用fork()产生子进程,由子 ...
分类:
系统相关 时间:
2020-11-12 13:44:15
阅读次数:
19
USS的英文全称是什么,请全部小写并使用下划线连接_,并在外面加上PCTF{}之后提交 检测你的搜索引擎使用能力,搜索USS Lab.,知道这是浙江大学的Ubiquitous System Security Lab. 所以得到flag: PCTF{ubiquitous_system_security ...
分类:
其他好文 时间:
2020-11-12 13:35:24
阅读次数:
7
X Window System protocols and architecture In computing, the X Window System (commonly X11 or X) is a network-transparent windowing system for bitmap ...
这次写的是小游戏扫雷,由于时间问题,扫雷的成功失败判断还没有写的很好,只是把大体的思路写出来了。 这次最主要的是有两个类 第一个是地雷类 :lanmine 1 using System; 2 using System.Collections.Generic; 3 using System.Drawi ...