Live2D
摘要: package Clock; public class Clock{ private int hour ; private int minute ; private int second ; // private Display H = new Display(hour,24) ; // priva 阅读全文
posted @ 2021-05-07 13:49 ΜΑΗΑΙΓΞ小白 阅读(64) 评论(0) 推荐(0)
摘要: package wang1; import java.awt.EventQueue; import java.awt.Toolkit; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JScrollB 阅读全文
posted @ 2021-05-07 13:46 ΜΑΗΑΙΓΞ小白 阅读(637) 评论(0) 推荐(0)
摘要: @RequestMapping(value = "/downfile", method = RequestMethod.GET) public void downfile(HttpServletRequest request, HttpServletResponse response) { try 阅读全文
posted @ 2021-05-07 13:45 ΜΑΗΑΙΓΞ小白 阅读(46) 评论(0) 推荐(0)
摘要: package com.java1234.util; import java.sql.Connection; import java.sql.DriverManager; public class DbUtil { private String dbUrl="jdbc:mysql://localho 阅读全文
posted @ 2021-05-07 13:43 ΜΑΗΑΙΓΞ小白 阅读(63) 评论(0) 推荐(0)
摘要: package experiment6; public interface ISoundable { public void increaseVolume(); public void decreaseVolume(); public void stopSound(); public void pl 阅读全文
posted @ 2021-05-07 13:41 ΜΑΗΑΙΓΞ小白 阅读(706) 评论(0) 推荐(0)
摘要: package test; public class BubbleSort { public void bubble(Integer[] array,int from,int end) { for(int k=1;k<end-from+1;k++) { for(int i=end-from;i>=k 阅读全文
posted @ 2021-05-07 13:40 ΜΑΗΑΙΓΞ小白 阅读(59) 评论(0) 推荐(0)
摘要: ①精确到纳秒 long startTime=System.nanoTime();//获取开始时间 /* 测试的程序代码; */ long endTime=System.nanoTime();//获取结束时间 System.out.println("运行时间是:"+(endTime-startTime 阅读全文
posted @ 2021-05-07 13:39 ΜΑΗΑΙΓΞ小白 阅读(168) 评论(1) 推荐(0)
摘要: import java.math.BigDecimal; import java.text.ParsePosition; import java.text.SimpleDateFormat; import java.time.LocalDate; import java.time.LocalDate 阅读全文
posted @ 2021-05-07 11:33 ΜΑΗΑΙΓΞ小白 阅读(53) 评论(0) 推荐(0)
摘要: 前言:一般的web工程中都会用到web.xml,web.xml主要用来配置,可以方便的开发web工程。web.xml主要用来配置Filter、Listener、Servlet等。但是要说明的是web.xml并不是必须的,一个web工程可以没有web.xml文件。 1、WEB工程加载web.xml过程 阅读全文
posted @ 2021-05-07 11:31 ΜΑΗΑΙΓΞ小白 阅读(494) 评论(0) 推荐(0)
摘要: var arr = [123, 17, 18]; document.oncontextmenu = new Function("event.returnValue=false;"),//禁用右键 window.onkeydown = function (e) { var keyCode = e.ke 阅读全文
posted @ 2021-05-07 11:27 ΜΑΗΑΙΓΞ小白 阅读(52) 评论(0) 推荐(0)