- 博客(9)
- 资源 (2)
- 收藏
- 关注
原创 idea配置maven
1、maven安装配置 这里就不详细的去写下载安装的过程了,主要说一下修改本地maven仓库的配置, 1.1修改setting.xml文件的localRepository的配置如下是我的本地maven配置 1.2修改setting.xml文件的mirror (在本地仓库中找不到你所需要的jar包的时候回去你配置的地址去下载jar包)支持配置多个。这里发一个alibaba的...
2019-11-13 15:25:39
147
转载 java获得文件夹目录
public class GetFileName { public static String [] getFileName(String path) { File file = new File(path); String [] fileName = file.list(); return fil
2017-12-15 14:13:43
354
转载 java获取文件的详细信息
package testfile;import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.FileReader;import java.io.FileWriter;impo
2017-12-15 13:55:34
3836
1
原创 java 字符串的编码
public String getEncoding(String str) { String encode = "GB2312"; try { if (str.equals(new String(str.getBytes(encode), encode))) { String s = encode; return s; } } catch (Exception exception)
2017-11-20 17:57:28
200
原创 td 内容过长以后进行隐藏
#content { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; width: 200px; } onload = function() { content.onmouseover = function() { this.title = this.innerHTML; } }
2017-10-17 16:31:06
1242
转载 Oracle分页查询
第一种方式 select * from (select a.*, rownum as rnum from (select * from index) a where rownum where rnum >= 5000 第二种方式 select * from (select *
2017-10-11 18:22:25
240
转载 PLSQl使用技巧
工欲善其事,必先利其器,最近研究了一下各种编程工具的使用,发掘了不少新功能,能够大大提升我们日常的工作效率,下面是转载的一篇PLSQL使用技巧,个人感觉很有用,分享一下。 1、PL/SQL Developer记住登陆密码 在使用PL/SQL Developer时,为了工作方便希望PL/SQL Developer记住登录Oracle的用户名和密码; 设置方法:PL/S
2017-09-08 11:27:25
299
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人