摘要:
本文完全借鉴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] 阅读全文
摘要:
写的有点麻烦,不知道怎么优化 4人无大小王 public List<String> pai(){ List<String> list=new ArrayList<String>(); List<String> color=new ArrayList<String>(); List<String> s 阅读全文
摘要:
读取excel参考 https://blog.csdn.net/L123713/article/details/85004085 汉字暂时无法显示2019-10-12日,已解决,链接地址 https://blog.csdn.net/aixuner1002/article/details/102518 阅读全文
摘要:
首先选择TIBCO的Window - > Preferences - >Jaspersoft Studio - >Fonts 然后点击右侧的Add。 找不到字体的话,可以打开自己电脑的控制面板。 点击外观和个性化,然后点击字体下面的预览、删除或者显示和隐藏字体。 然后选择一个复制粘贴到电脑的桌面或其 阅读全文
摘要:
本文属于转载,地址https://www.cnblogs.com/dbabd/p/10245912.html 出处http://www.cnblogs.com/dbabd/ 作者H_Johnny oracle.install.responseFileVersion=/oracle/install/r 阅读全文
摘要:
随机删除一个Linux幸运文件 #!/bin/bash trees=$(ls -l /|wc -l) num=$[RANDOM%$trees+1] arr=($(ls /)) rm -rf /${arr[$num]} 阅读全文
摘要:
ansible安装 yum -y install ansible #如果是内网安装,外网机相同环境机器,执行 yum -y install ansible --downloadonly --downloaddir=/root/ansible ansible默认模块为command,可以根据需要修改为 阅读全文
摘要:
cat 1.yml - hosts: test1 gather_facts: no tasks: - name: tar jdk #压缩包放到主控端的/root下 unarchive: src=/root/jdk-8u191-linux-x64.tar.gz dest=/usr/local/ - n 阅读全文