- 浏览: 41892 次
- 性别:
- 来自: 广州
文章列表
1.What is the output of the following code?
public class TestEquals{
public static void main(String[] args){
String str1 = "test";
String str2 = new String("test");
String str3 = "test";
System.out.println(str1 == str2);
...
直接在server.xml中<Host></Host>间加了一句<Context path="" docBase="/test" debug="0" reloadable="true"/>,其中docBase="/test"中的/test是项目名字。
面试中的几个问题,只记得这么几个了。虽然没过,以后继续努力。
1、Exception是类还是接口,实现的哪个接口,兄弟类是什么?异常的处理方式?
2、switch支持的类型是哪些,default可以放在case前面吗?
3、android的四大容器?
4、约瑟夫用java/c++实现方法?
5、socket通信原理?
6、线程怎么使用?使用哪个更好?为什么?
7、java集合有多少种?每种的特性是什么?
在网上看了一些压缩图片的实例后,再结合公司项目写了一个感觉比较理想的压缩图片小程序。
package demo.awt.image;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.awt.image.ConvolveOp;
import java.awt.image.Kernel;
import java.io.File;
import java.io.FileNotFoundException;
import java ...
纯JAVA校验码生成
- 博客分类:
- JAVA
觉得不错拿来分享一下。
package ptest;
public class JymProduce {
public String getGertWord(String paramString1, String paramString2, long paramLong,
String paramString3, String paramString4) {
llIIllIIIlIIllIl localllIIllIIIlIIllIl = new llIIllIIIlIIllIl();
return localllIIllIIIlIIllIl.getGertW ...
原文地址:http://trujun.blog.163.com/blog/static/181234097201171621323571/
1.打开显示功能
选择Windows->Preferences->Java-> Editor-> Mark Occurrences ,勾选选项。这时,当你单击一个元素的时候,代码中所有该元素存在的地方都会被高亮显示。
2.设置高亮的颜色
Window/preferences/general/Editors/Text Editors/Annotations/Occurences
package test.excel;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.HSS ...
今天发现我的myeclipse选中变量或者方法时,引用相同变量和方法的标记没有显示。
解决方案:window-->preferences-->java-->Editor-->mark occurrences 选中Mark occurrences of the selected element in the current file即可。
今天导入以前用过的项目后,所有的src目录下的java文件全部报错(The declared package does not match the expected package)。
在网上找了好久终于找到了解决方法(http://stackoverflow.com/questions/6997524/the-declared-package-does-not-match-the-expected-package):
Most likely what's wrong is that your project properties point to the wrong place in orde ...
--分页查询
create or replace package testpackage as
type testcursor is ref cursor;
end testpackage;
/
--select * from (select rownum rn,a1.* from (select * from emp)a1 where rownum<=10) where rn>=6;
create or replace procedure zk_pro7(
zk_table in varchar2,
zk_pagesize in number,
...