随笔分类 - java
摘要:<body> <table border="1"> <thead> <tr> <th>姓名</th> <th>年龄</th> <th>性别</th> </tr> </thead> <tbody id="test"> </tbody> </table> <script type="applicatio
阅读全文
摘要:<body> <ul id="test"> </ul> <script type="application/javascript"> var list1 = ["白菜","萝卜","黄瓜","西红柿"] for(var index in list1){ //获取list1中的元素 var txt =
阅读全文
摘要:一; 加入依赖 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.4.3.RELEASE</version> </pa
阅读全文
摘要:本文完全借鉴https://blog.csdn.net/qq_22174779/article/details/88199898 package xyz.guqing.imageutil; import java.awt.AlphaComposite; import java.awt.Graphic
阅读全文
摘要:<%@ page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8" session="false" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <he
阅读全文
摘要:int[] a={9,5,12,3,8,18,7,1,2,35,6}; for (int i = 0; i < a.length-1; i++) { //假定index时最小下标 int index=i; for(int j=i+1;j<a.length;j++){ if(a[index]>a[j]
阅读全文
摘要:读取excel参考 https://blog.csdn.net/L123713/article/details/85004085 汉字暂时无法显示2019-10-12日,已解决,链接地址 https://blog.csdn.net/aixuner1002/article/details/102518
阅读全文