`
文章列表
转:https://www.cnblogs.com/wangdaijun/p/5301848.html #########COMMON SPRING BOOT PROPERTIES######========CORE PROPERTIES===========#SPRING CONFIG (ConfigFileApplicationListener)spring.config.name= # config file name (default to 'application')spring.config.location= # location of config file#PROFILES ...

redis配置

1.开启服务端: cmd 窗口 使用cd命令切换目录到 C:\redis 运行 redis-server.exe redis.windows.conf 2.另启一个cmd窗口,原来的不要关闭,不然就无法访问服务端了。切换到redis目录下运行 redis-cli.exe -h 127.0.0.1 -p 6379 。 3.redis作为windows服务启动方式的启动方式:
1.  http://v1.iviewui.com/components/grid  --ivew官网 2.  https://adminlte.io/themes/AdminLTE/index2.html#  --view参考组件 3.  https://www.cnblogs.com/wangdaijun/---java学习之路 4.  http://www.cnblogs.com/wangdaijun/p/6828699.html  ---java成神之路
rootElement.selectNodes("//*[@id=\"step03\"]")  查询 属性名称为id,属性值为step03的所有节点

++i和i++不同

    博客分类:
  • java
++i直接把i里面数据增加1并且变量i作运算结; i++则需要先分配块临时空间把i值复制过去再把i里面数据增加1并且用临时空间里值(也i旧值)作运算结 因此,在理论上++i性能比i++好
        String str1 = "c:\\Program Files\\WinRaR\\WinRaR.exe";         String str2 = "u";         String str3 = "d:\\hdx\\gg.hdx";         String str4 = "d:\\resources\\navi.xml";         String[] cmd = {str1, str2, str3, str4};         Runtime.getRuntime().exe ...
1.Excel中换行符 除了加上\r\n之外,还得加上  cellStyle.setWrapText(true),才能实现自动换行
在java代码opi中,不能设置超链接为空格字符串, 否则,在操作完excel,在重新打开excel的时候,会报错:“Excel 已完成文件级验证和修复。此工作簿的某些部分可能已被修复或丢弃。 已修复的部件: 部件 /xl/worksheets/sheet3.xml。 已删除的功能: /xl/worksheets/sheet3.xml 部分的 超链接” 这个问题在excel2010中不存在
import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import com.huawei.infotool.idp.utils.XmlUtils; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFClientAnchor; import org.apache.poi.hssf.usermodel.HSSFComment; import o ...
【安装jad程序】 (拷贝即可,为最新版本Jad 1.5.8g for Windows 9x/NT/2000 on Intel platform) 1、将jad.exe拷贝到%JAVA_HOME%\Bin程序目录。(也可以放置任意目录,例如:C:\Program Files\Jad\jad.exe) 【安装jadclipse插件】 2、解压net.sf.jadclipse_3.3.0.jar,将其拷贝到eclipse\plugins目录下,重新启动eclipse。 MyEclipse7.x,请在Genuitec\MyEclipse 7.1\dropins\下创建 (MyEclips ...
   重写对象的equals方法时,需要重写hashcode。因为两个对象equals的时候,他的hashcode应该是保持一致的。    在set中,元素不允许重复。这个重复是根据对象的内存地址判断的,对于只重写了equals方法的两个实体,equlas比较相等,那这两个对象也可能会放入set中,因为其hashcode可能会不一致。 1.下面是一个java类,重写了equals,但是没有重写hashcode package compare_equals_hashCode; public class UserInfo { private String userName; privat ...
Global site tag (gtag.js) - Google Analytics