- 浏览: 505706 次
- 性别:
- 来自: 广州
最新评论
-
cppmule:
Play!在国内实际产品级应用案例有吗?有哪些公司在用?国外的 ...
play总结性介绍 -
你好javaword:
netty的个人使用心得 -
hyfwuhui:
java 并发环境下使用ConcurrentHashMap -
asialee:
朋在无锡 写道可以将Channels使用静态导入的方式:imp ...
netty的个人使用心得 -
朋在无锡:
可以将Channels使用静态导入的方式:import sta ...
netty的个人使用心得
今天中午接到阿里巴巴的电话面试,电面了将近一个小时左右。感觉自己发挥得并不好,好多基础的只是还是一知半解的, 虽然看过一些东西的源代码,但是,很多东西,也只是限看过而且,但是一到用的时候,或者被问到的时候, 却突然失忆……, 这里记录一下今天问到的问题。给自己长长记性。
================================================
PS 凭着记忆来把他问的问题整理一下,并列出来,准备一一理解清楚
最开始的几个问题我现在已经记不清楚了, 估计当时紧张了。
===================================================
你对Java的集合框架了解吗? 能否说说常用的类?
说说Hashtable与HashMap的区别: 源代码级别的区别呢?
平时用过的List有哪些? (除了ArrayList和LinkedList),ArrayList和LinkedList的区别?
ArrayList的特点,内部容器是如何扩充的?
Properties类的特点? 线程安全?
===============================================
平时使用过的框架有哪些? (我提到了Struts2)
请说一下Struts2的初始化?和类的创建?(从源代码角度出发)
据你了解,除了反射还有什么方式可以动态的创建对象?(我提到了CGLIB…… 我以为他会接着问CGLIB,揪心中……,结果他没问)
请说一下Struts2 是如何把Action交给Spring托管的?它是单例的还是多例? 你们页面的表单对象是多例还是单例?
请说一下你们业务层对象是单例还是多例的?
请说一下Struts2源代码中有哪些设计模式?
======================================================
请说一下,你觉得你最熟悉的技术特点? (我提到了并发编程)
请说一下线程安全出现的原因?
请说一下线程池的中断策略(4个)? 各有什么特点?
请说一下Tomcat配置不同应用的不同端口如何配置? 如何配置数据源? 如何实现动态部署?
请说一下Java常用的优化?
你了解最新的Servlet规范吗? 简单说一下?(我提到了推)
那请你说一下“推”是如何实现的?
线程安全下,StringBuffer与StringBuilder的区别? 它们是如何扩充内部数组容量的? (源代码)
请说一下Tomcat中的设计模式?(我提到观察者模式)
是否可以说说Java反射的相关优化机制? (我说我不太清楚…… 他说没关系 - -!)
请说一些Mysql的常用优化策略?
因为我之前有提到过“推”,他可能对我的知识面比较感兴趣,要我说说平时都看些什么书,还了解一些什么其他的技术范畴。
(他首先提到SOA,我说有了解,并且是未来的趋势,还有提到云计算,我说有过一定了解,但是并未深究)
=====================================================
之后是几个职业方面的问题?
你觉得你的潜力? 你在团队中的位置? 你觉得跟团队中最好的还有哪些差距?你要花多少时间赶上他们?
你对阿里巴巴还有什么疑问吗? (我很囧的问了,“阿里巴巴的牛人平时都跟你们有互动吗?-----本意是指培训,但是话没说清楚……”,囧了……)
- 你对Java的集合框架了解吗? 能否说说常用的类?
-
说说Hashtable与HashMap的区别(源代码级别)
1.最明显的区别在于Hashtable 是同步的(每个方法都是synchronized),而HashMap则不是.
2.HashMap继承至AbstractMap,Hashtable继承至Dictionary ,前者为Map的骨干, 其内部已经实现了Map所需 要做的大部分工作, 它的子类只需要实现它的少量方法即可具有Map的多项特性。而后者内部都为抽象方法,需要 它的实现类一一作自己的实现,且该类已过时
3.两者检测是否含有key时,hash算法不一致,HashMap内部需要将key的hash码重新计算一边再检测,而 Hashtable则直接利用key本身的hash码来做验证。
HashMap:
- int hash = (key == null) ? 0 : hash(key.hashCode());
- -----
- static int hash(int h) {
- h ^= (h >>> 20) ^ (h >>> 12);
- return h ^ (h >>> 7) ^ (h >>> 4);
- }
int hash = (key == null) ? 0 : hash(key.hashCode()); ----- static int hash(int h) { h ^= (h >>> 20) ^ (h >>> 12); return h ^ (h >>> 7) ^ (h >>> 4); }
Hashtable:
int hash = key.hashCode();
4.两者初始化容量大小不一致,HashMap内部为 16*0.75 , Hashtable 为 11*0.75
HashMap:
- static final int DEFAULT_INITIAL_CAPACITY = 16;
- static final float DEFAULT_LOAD_FACTOR = 0.75f;
- public HashMap() {
- this.loadFactor = DEFAULT_LOAD_FACTOR;
- threshold=(int)(DEFAULT_INITIAL_CAPACITY*DEFAULT_LOAD_FACTOR);
- table = new Entry[DEFAULT_INITIAL_CAPACITY];
- init();
- }
- ………………………………
static final int DEFAULT_INITIAL_CAPACITY = 16; static final float DEFAULT_LOAD_FACTOR = 0.75f; public HashMap() { this.loadFactor = DEFAULT_LOAD_FACTOR; threshold=(int)(DEFAULT_INITIAL_CAPACITY*DEFAULT_LOAD_FACTOR); table = new Entry[DEFAULT_INITIAL_CAPACITY]; init(); } ………………………………
Hashtable:
- public Hashtable() {
- this(11, 0.75f);
- }
- -----
- public Hashtable(int initialCapacity, float loadFactor) {
- ..........
- this.loadFactor = loadFactor;
- table = new Entry[initialCapacity];
- threshold = (int)(initialCapacity * loadFactor);
- }
public Hashtable() { this(11, 0.75f); } ----- public Hashtable(int initialCapacity, float loadFactor) { .......... this.loadFactor = loadFactor; table = new Entry[initialCapacity]; threshold = (int)(initialCapacity * loadFactor); }
其实后续的区别应该还有很多, 这里先列出4点。
- 平时除了ArrayList和LinkedList外,还用过的List有哪些?
ArrayList和LinkedList的区别?
ArrayList和LinkedList的区别?
事实上,我用过的List主要就是这2个, 另外用过Vector.
ArrayList和LinkedList的区别:
-
毫无疑问,第一点就是两者的内部数据结构不同, ArrayList内部元素容器是一个Object的数组,
而LinkedList内部实际上一个链表的数据结构,其有一个内部类来表示链表.- (ArrayList)
- private transient Object[] elementData;
- ………………………………………………………………………………
- (LinkedList)
- private transient Entry<E> header = new Entry<E>(null, null, null);/链表头
- //内部链表类.
- private static class Entry<E> {
- E element; //数据元素
- Entry<E> next; // 前驱
- Entry<E> previous;//后驱
- Entry(E element, Entry<E> next, Entry<E> previous) {
- this.element = element;
- this.next = next;
- this.previous = previous;
- }
- }
(ArrayList) private transient Object[] elementData; ……………………………………………………………………………… (LinkedList) private transient Entry<E> header = new Entry<E>(null, null, null);/链表头 //内部链表类. private static class Entry<E> { E element; //数据元素 Entry<E> next; // 前驱 Entry<E> previous;//后驱 Entry(E element, Entry<E> next, Entry<E> previous) { this.element = element; this.next = next; this.previous = previous; } }
- 两者的父类不同,也就决定了两者的存储形式不同。 ArrayList继承于 AbstractList,而LinkedList继承于AbstractSequentialList. 两者都实现了List的骨干结构,只是前者的访问形式趋向于 “随机访问”数据存储(如数组),后者趋向于 “连续访问”数据存储(如链接列表)
- public class ArrayList<E> extends AbstractList<E>
- ---------------------------------------------------------------------------------------
- public class LinkedList<E> extends AbstractSequentialList<E>
public class ArrayList<E> extends AbstractList<E> --------------------------------------------------------------------------------------- public class LinkedList<E> extends AbstractSequentialList<E>
- 再有就是两者的效率问题, ArrayList基于数组实现,所以毫无疑问可以直接用下标来索引,其索引数据快,插入元素设计到数组元素移动,或者数组扩充,所以插入元素要慢。LinkedList基于链表结构,插入元素只需要改变插入元素的前后项的指向即可,故插入数据要快,而索引元素需要向前向后遍历,所以索引元素要慢。
-
ArrayList的特点,内部容器是如何扩充的?
- public void ensureCapacity(int minCapacity) {
- modCount++;
- int oldCapacity = elementData.length;
- if (minCapacity > oldCapacity) {
- Object oldData[] = elementData;
- //这里扩充的大小为原大小的大概 60%
- int newCapacity = (oldCapacity * 3) / 2 + 1;
- if (newCapacity < minCapacity)
- newCapacity = minCapacity;
- //创建一个指定大小的新数组来覆盖原数组
- elementData = Arrays.copyOf(elementData, newCapacity);
- }
- }
public void ensureCapacity(int minCapacity) { modCount++; int oldCapacity = elementData.length; if (minCapacity > oldCapacity) { Object oldData[] = elementData; //这里扩充的大小为原大小的大概 60% int newCapacity = (oldCapacity * 3) / 2 + 1; if (newCapacity < minCapacity) newCapacity = minCapacity; //创建一个指定大小的新数组来覆盖原数组 elementData = Arrays.copyOf(elementData, newCapacity); } }
-
Properties类的特点? 线程安全吗?
Properties 继承于Hashtable,,所以它是线程安全的. 其特点是: 它表示的是一个持久的属性集,它可以保存在流中或者从流中加载,属性列表的每一个键和它所对应的值都是一个“字符串” 其中,常用的方法是load()方法,从流中加载属性:
- <SPAN style="FONT-WEIGHT: normal">public synchronized void load(InputStream inStream) throws IOException {
-
// 将输入流转换成LineReader
-
load0(new LineReader(inStream));
- }
-
-
private void load0(LineReader lr) throws IOException {
-
char[] convtBuf = new char[1024];
-
int limit;
-
int keyLen;
-
int valueStart;
-
char c;
-
boolean hasSep;
-
boolean precedingBackslash;
-
// 一行一行处理
-
while ((limit = lr.readLine()) >= 0) {
-
c = 0;
-
keyLen = 0;
- valueStart = limit;
-
hasSep = false;
-
precedingBackslash = false;
-
// 下面用2个循环来处理key,value
-
while (keyLen < limit) {
- c = lr.lineBuf[keyLen];
-
// need check if escaped.
-
if ((c == '=' || c == ':') && !precedingBackslash) {
-
valueStart = keyLen + 1;
-
hasSep = true;
-
break;
-
} else if ((c == ' ' || c == '\t' || c == '\f')
- && !precedingBackslash) {
-
valueStart = keyLen + 1;
-
break;
- }
-
if (c == '\\') {
- precedingBackslash = !precedingBackslash;
-
} else {
-
precedingBackslash = false;
- }
- keyLen++;
- }
-
-
while (valueStart < limit) {
- c = lr.lineBuf[valueStart];
-
if (c != ' ' && c != '\t' && c != '\f') {
-
if (!hasSep && (c == '=' || c == ':')) {
-
hasSep = true;
-
} else {
-
break;
- }
- }
- valueStart++;
- }
-
-
String key = loadConvert(lr.lineBuf, 0, keyLen, convtBuf);
- String value = loadConvert(lr.lineBuf, valueStart, limit
- - valueStart, convtBuf);
-
// 存入内部容器中,这里用的是Hashtable 内部的方法.
- put(key, value);
- }
- }</SPAN>
public synchronized void load(InputStream inStream) throws IOException {
// 将输入流转换成LineReader
load0(new LineReader(inStream));
}
private void load0(LineReader lr) throws IOException {
char[] convtBuf = new char[1024];
int limit;
int keyLen;
int valueStart;
char c;
boolean hasSep;
boolean precedingBackslash;
// 一行一行处理
while ((limit = lr.readLine()) >= 0) {
c = 0;
keyLen = 0;
valueStart = limit;
hasSep = false;
precedingBackslash = false;
// 下面用2个循环来处理key,value
while (keyLen < limit) {
c = lr.lineBuf[keyLen];
// need check if escaped.
if ((c == '=' || c == ':') && !precedingBackslash) {
valueStart = keyLen + 1;
hasSep = true;
break;
} else if ((c == ' ' || c == '\t' || c == '\f')
&& !precedingBackslash) {
valueStart = keyLen + 1;
break;
}
if (c == '\\') {
precedingBackslash = !precedingBackslash;
} else {
precedingBackslash = false;
}
keyLen++;
}
while (valueStart < limit) {
c = lr.lineBuf[valueStart];
if (c != ' ' && c != '\t' && c != '\f') {
if (!hasSep && (c == '=' || c == ':')) {
hasSep = true;
} else {
break;
}
}
valueStart++;
}
String key = loadConvert(lr.lineBuf, 0, keyLen, convtBuf);
String value = loadConvert(lr.lineBuf, valueStart, limit
- valueStart, convtBuf);
// 存入内部容器中,这里用的是Hashtable 内部的方法.
put(key, value);
}
}
LineReader类,是Properties内部的类:
- <SPAN style="FONT-WEIGHT: normal">class LineReader {
-
public LineReader(InputStream inStream) {
-
this.inStream = inStream;
-
inByteBuf = new byte[8192];
- }
-
-
public LineReader(Reader reader) {
-
this.reader = reader;
-
inCharBuf = new char[8192];
- }
-
-
byte[] inByteBuf;
-
char[] inCharBuf;
-
char[] lineBuf = new char[1024];
-
int inLimit = 0;
-
int inOff = 0;
- InputStream inStream;
- Reader reader;
-
-
/**
- * 读取一行
- *
- * @return
- * @throws IOException
- */
-
int readLine() throws IOException {
-
int len = 0;
-
char c = 0;
-
boolean skipWhiteSpace = true;// 空白
-
boolean isCommentLine = false;// 注释
-
boolean isNewLine = true;// 是否新行.
-
boolean appendedLineBegin = false;// 加 至行开始
-
boolean precedingBackslash = false;// 反斜杠
-
boolean skipLF = false;
-
while (true) {
-
if (inOff >= inLimit) {
-
// 从输入流中读取一定数量的字节并将其存储在缓冲区数组inCharBuf/inByteBuf中,这里区分字节流和字符流
-
inLimit = (inStream == null) ? reader.read(inCharBuf)
- : inStream.read(inByteBuf);
-
inOff = 0;
-
// 读取到的为空.
-
if (inLimit <= 0) {
-
if (len == 0 || isCommentLine) {
-
return -1;
- }
-
return len;
- }
- }
-
if (inStream != null) {
-
// 由于是字节流,需要使用ISO8859-1来解码
-
c = (char) (0xff & inByteBuf[inOff++]);
-
} else {
- c = inCharBuf[inOff++];
- }
-
-
if (skipLF) {
-
skipLF = false;
-
if (c == '\n') {
-
continue;
- }
- }
-
if (skipWhiteSpace) {
-
if (c == ' ' || c == '\t' || c == '\f') {
-
continue;
- }
-
if (!appendedLineBegin && (c == '\r' || c == '\n')) {
-
continue;
- }
-
skipWhiteSpace = false;
-
appendedLineBegin = false;
- }
-
if (isNewLine) {
-
isNewLine = false;
-
if (c == '#' || c == '!') {
-
// 注释行,忽略.
-
isCommentLine = true;
-
continue;
- }
- }
-
// 读取真正的属性内容
-
if (c != '\n' && c != '\r') {
-
// 这里类似于ArrayList内部的容量扩充,使用字符数组来保存读取的内容.
- lineBuf[len++] = c;
-
if (len == lineBuf.length) {
-
int newLength = lineBuf.length * 2;
-
if (newLength < 0) {
- newLength = Integer.MAX_VALUE;
- }
-
char[] buf = new char[newLength];
-
System.arraycopy(lineBuf, 0, buf, 0, lineBuf.length);
- lineBuf = buf;
- }
-
if (c == '\\') {
- precedingBackslash = !precedingBackslash;
-
} else {
-
precedingBackslash = false;
- }
-
} else {
-
// reached EOL 文件结束
-
if (isCommentLine || len == 0) {
-
isCommentLine = false;
-
isNewLine = true;
-
skipWhiteSpace = true;
-
len = 0;
-
continue;
- }
-
if (inOff >= inLimit) {
-
inLimit = (inStream == null) ? reader.read(inCharBuf)
- : inStream.read(inByteBuf);
-
inOff = 0;
-
if (inLimit <= 0) {
-
return len;
- }
- }
-
if (precedingBackslash) {
-
len -= 1;
-
skipWhiteSpace = true;
-
appendedLineBegin = true;
-
precedingBackslash = false;
-
if (c == '\r') {
-
skipLF = true;
- }
-
} else {
-
return len;
- }
- }
- }
- }
- } </SPAN>
class LineReader {
public LineReader(InputStream inStream) {
this.inStream = inStream;
inByteBuf = new byte[8192];
}
public LineReader(Reader reader) {
this.reader = reader;
inCharBuf = new char[8192];
}
byte[] inByteBuf;
char[] inCharBuf;
char[] lineBuf = new char[1024];
int inLimit = 0;
int inOff = 0;
InputStream inStream;
Reader reader;
/**
* 读取一行
*
* @return
* @throws IOException
*/
int readLine() throws IOException {
int len = 0;
char c = 0;
boolean skipWhiteSpace = true;// 空白
boolean isCommentLine = false;// 注释
boolean isNewLine = true;// 是否新行.
boolean appendedLineBegin = false;// 加 至行开始
boolean precedingBackslash = false;// 反斜杠
boolean skipLF = false;
while (true) {
if (inOff >= inLimit) {
// 从输入流中读取一定数量的字节并将其存储在缓冲区数组inCharBuf/inByteBuf中,这里区分字节流和字符流
inLimit = (inStream == null) ? reader.read(inCharBuf)
: inStream.read(inByteBuf);
inOff = 0;
// 读取到的为空.
if (inLimit <= 0) {
if (len == 0 || isCommentLine) {
return -1;
}
return len;
}
}
if (inStream != null) {
// 由于是字节流,需要使用ISO8859-1来解码
c = (char) (0xff & inByteBuf[inOff++]);
} else {
c = inCharBuf[inOff++];
}
if (skipLF) {
skipLF = false;
if (c == '\n') {
continue;
}
}
if (skipWhiteSpace) {
if (c == ' ' || c == '\t' || c == '\f') {
continue;
}
if (!appendedLineBegin && (c == '\r' || c == '\n')) {
continue;
}
skipWhiteSpace = false;
appendedLineBegin = false;
}
if (isNewLine) {
isNewLine = false;
if (c == '#' || c == '!') {
// 注释行,忽略.
isCommentLine = true;
continue;
}
}
// 读取真正的属性内容
if (c != '\n' && c != '\r') {
// 这里类似于ArrayList内部的容量扩充,使用字符数组来保存读取的内容.
lineBuf[len++] = c;
if (len == lineBuf.length) {
int newLength = lineBuf.length * 2;
if (newLength < 0) {
newLength = Integer.MAX_VALUE;
}
char[] buf = new char[newLength];
System.arraycopy(lineBuf, 0, buf, 0, lineBuf.length);
lineBuf = buf;
}
if (c == '\\') {
precedingBackslash = !precedingBackslash;
} else {
precedingBackslash = false;
}
} else {
// reached EOL 文件结束
if (isCommentLine || len == 0) {
isCommentLine = false;
isNewLine = true;
skipWhiteSpace = true;
len = 0;
continue;
}
if (inOff >= inLimit) {
inLimit = (inStream == null) ? reader.read(inCharBuf)
: inStream.read(inByteBuf);
inOff = 0;
if (inLimit <= 0) {
return len;
}
}
if (precedingBackslash) {
len -= 1;
skipWhiteSpace = true;
appendedLineBegin = true;
precedingBackslash = false;
if (c == '\r') {
skipLF = true;
}
} else {
return len;
}
}
}
}
}
这里特别的是,实际上,Properties从流中加载属性集合,是通过将流中的字符或者字节分成一行行来处理的。
-
请说一下Struts2的初始化?和类的创建?(从源代码角度出发)
(我当时回答这个问题的思路我想应该对了, 我说是通过反射加配置文件来做的)
由于这个问题研究起来可以另外写一篇专门的模块,这里只列出相对简单的流程,后续会希望有时间整理出具体的细节: 首先,Struts2是基于Xwork框架的,如果你有仔细看过Xwork的文档,你会发现,它的初始化过程基于以下几个类: Configuring XWork2 centers around the following classes:- 1. ConfigurationManager 2. ConfigurationProvider 3. Configuration 而在ConfigurationProvider的实现类XmlConfigurationProvider 的内部,你可以看到下面的代码
- <SPAN style="FONT-WEIGHT: normal"> public XmlConfigurationProvider() {
-
this("xwork.xml", true);
- }</SPAN>
public XmlConfigurationProvider() {
this("xwork.xml", true);
}
同样的,Struts2的初始化也是这样的一个类,只不过它继承于Xwork原有的类,并针对Struts2做了一些特别的定制。
- <SPAN style="FONT-WEIGHT: normal">public class StrutsXmlConfigurationProvider
-
extends XmlConfigurationProvider {
-
keywo
发表评论
- <SPAN style="FONT-WEIGHT: normal">public synchronized void load(InputStream inStream) throws IOException {
- // 将输入流转换成LineReader
- load0(new LineReader(inStream));
- }
- private void load0(LineReader lr) throws IOException {
- char[] convtBuf = new char[1024];
- int limit;
- int keyLen;
- int valueStart;
- char c;
- boolean hasSep;
- boolean precedingBackslash;
- // 一行一行处理
- while ((limit = lr.readLine()) >= 0) {
- c = 0;
- keyLen = 0;
- valueStart = limit;
- hasSep = false;
- precedingBackslash = false;
- // 下面用2个循环来处理key,value
- while (keyLen < limit) {
- c = lr.lineBuf[keyLen];
- // need check if escaped.
- if ((c == '=' || c == ':') && !precedingBackslash) {
- valueStart = keyLen + 1;
- hasSep = true;
- break;
- } else if ((c == ' ' || c == '\t' || c == '\f')
- && !precedingBackslash) {
- valueStart = keyLen + 1;
- break;
- }
- if (c == '\\') {
- precedingBackslash = !precedingBackslash;
- } else {
- precedingBackslash = false;
- }
- keyLen++;
- }
- while (valueStart < limit) {
- c = lr.lineBuf[valueStart];
- if (c != ' ' && c != '\t' && c != '\f') {
- if (!hasSep && (c == '=' || c == ':')) {
- hasSep = true;
- } else {
- break;
- }
- }
- valueStart++;
- }
- String key = loadConvert(lr.lineBuf, 0, keyLen, convtBuf);
- String value = loadConvert(lr.lineBuf, valueStart, limit
- - valueStart, convtBuf);
- // 存入内部容器中,这里用的是Hashtable 内部的方法.
- put(key, value);
- }
- }</SPAN>
public synchronized void load(InputStream inStream) throws IOException {
// 将输入流转换成LineReader
load0(new LineReader(inStream));
}
private void load0(LineReader lr) throws IOException {
char[] convtBuf = new char[1024];
int limit;
int keyLen;
int valueStart;
char c;
boolean hasSep;
boolean precedingBackslash;
// 一行一行处理
while ((limit = lr.readLine()) >= 0) {
c = 0;
keyLen = 0;
valueStart = limit;
hasSep = false;
precedingBackslash = false;
// 下面用2个循环来处理key,value
while (keyLen < limit) {
c = lr.lineBuf[keyLen];
// need check if escaped.
if ((c == '=' || c == ':') && !precedingBackslash) {
valueStart = keyLen + 1;
hasSep = true;
break;
} else if ((c == ' ' || c == '\t' || c == '\f')
&& !precedingBackslash) {
valueStart = keyLen + 1;
break;
}
if (c == '\\') {
precedingBackslash = !precedingBackslash;
} else {
precedingBackslash = false;
}
keyLen++;
}
while (valueStart < limit) {
c = lr.lineBuf[valueStart];
if (c != ' ' && c != '\t' && c != '\f') {
if (!hasSep && (c == '=' || c == ':')) {
hasSep = true;
} else {
break;
}
}
valueStart++;
}
String key = loadConvert(lr.lineBuf, 0, keyLen, convtBuf);
String value = loadConvert(lr.lineBuf, valueStart, limit
- valueStart, convtBuf);
// 存入内部容器中,这里用的是Hashtable 内部的方法.
put(key, value);
}
}
- <SPAN style="FONT-WEIGHT: normal">class LineReader {
- public LineReader(InputStream inStream) {
- this.inStream = inStream;
- inByteBuf = new byte[8192];
- }
- public LineReader(Reader reader) {
- this.reader = reader;
- inCharBuf = new char[8192];
- }
- byte[] inByteBuf;
- char[] inCharBuf;
- char[] lineBuf = new char[1024];
- int inLimit = 0;
- int inOff = 0;
- InputStream inStream;
- Reader reader;
- /**
- * 读取一行
- *
- * @return
- * @throws IOException
- */
- int readLine() throws IOException {
- int len = 0;
- char c = 0;
- boolean skipWhiteSpace = true;// 空白
- boolean isCommentLine = false;// 注释
- boolean isNewLine = true;// 是否新行.
- boolean appendedLineBegin = false;// 加 至行开始
- boolean precedingBackslash = false;// 反斜杠
- boolean skipLF = false;
- while (true) {
- if (inOff >= inLimit) {
- // 从输入流中读取一定数量的字节并将其存储在缓冲区数组inCharBuf/inByteBuf中,这里区分字节流和字符流
- inLimit = (inStream == null) ? reader.read(inCharBuf)
- : inStream.read(inByteBuf);
- inOff = 0;
- // 读取到的为空.
- if (inLimit <= 0) {
- if (len == 0 || isCommentLine) {
- return -1;
- }
- return len;
- }
- }
- if (inStream != null) {
- // 由于是字节流,需要使用ISO8859-1来解码
- c = (char) (0xff & inByteBuf[inOff++]);
- } else {
- c = inCharBuf[inOff++];
- }
- if (skipLF) {
- skipLF = false;
- if (c == '\n') {
- continue;
- }
- }
- if (skipWhiteSpace) {
- if (c == ' ' || c == '\t' || c == '\f') {
- continue;
- }
- if (!appendedLineBegin && (c == '\r' || c == '\n')) {
- continue;
- }
- skipWhiteSpace = false;
- appendedLineBegin = false;
- }
- if (isNewLine) {
- isNewLine = false;
- if (c == '#' || c == '!') {
- // 注释行,忽略.
- isCommentLine = true;
- continue;
- }
- }
- // 读取真正的属性内容
- if (c != '\n' && c != '\r') {
- // 这里类似于ArrayList内部的容量扩充,使用字符数组来保存读取的内容.
- lineBuf[len++] = c;
- if (len == lineBuf.length) {
- int newLength = lineBuf.length * 2;
- if (newLength < 0) {
- newLength = Integer.MAX_VALUE;
- }
- char[] buf = new char[newLength];
- System.arraycopy(lineBuf, 0, buf, 0, lineBuf.length);
- lineBuf = buf;
- }
- if (c == '\\') {
- precedingBackslash = !precedingBackslash;
- } else {
- precedingBackslash = false;
- }
- } else {
- // reached EOL 文件结束
- if (isCommentLine || len == 0) {
- isCommentLine = false;
- isNewLine = true;
- skipWhiteSpace = true;
- len = 0;
- continue;
- }
- if (inOff >= inLimit) {
- inLimit = (inStream == null) ? reader.read(inCharBuf)
- : inStream.read(inByteBuf);
- inOff = 0;
- if (inLimit <= 0) {
- return len;
- }
- }
- if (precedingBackslash) {
- len -= 1;
- skipWhiteSpace = true;
- appendedLineBegin = true;
- precedingBackslash = false;
- if (c == '\r') {
- skipLF = true;
- }
- } else {
- return len;
- }
- }
- }
- }
- } </SPAN>
class LineReader {
public LineReader(InputStream inStream) {
this.inStream = inStream;
inByteBuf = new byte[8192];
}
public LineReader(Reader reader) {
this.reader = reader;
inCharBuf = new char[8192];
}
byte[] inByteBuf;
char[] inCharBuf;
char[] lineBuf = new char[1024];
int inLimit = 0;
int inOff = 0;
InputStream inStream;
Reader reader;
/**
* 读取一行
*
* @return
* @throws IOException
*/
int readLine() throws IOException {
int len = 0;
char c = 0;
boolean skipWhiteSpace = true;// 空白
boolean isCommentLine = false;// 注释
boolean isNewLine = true;// 是否新行.
boolean appendedLineBegin = false;// 加 至行开始
boolean precedingBackslash = false;// 反斜杠
boolean skipLF = false;
while (true) {
if (inOff >= inLimit) {
// 从输入流中读取一定数量的字节并将其存储在缓冲区数组inCharBuf/inByteBuf中,这里区分字节流和字符流
inLimit = (inStream == null) ? reader.read(inCharBuf)
: inStream.read(inByteBuf);
inOff = 0;
// 读取到的为空.
if (inLimit <= 0) {
if (len == 0 || isCommentLine) {
return -1;
}
return len;
}
}
if (inStream != null) {
// 由于是字节流,需要使用ISO8859-1来解码
c = (char) (0xff & inByteBuf[inOff++]);
} else {
c = inCharBuf[inOff++];
}
if (skipLF) {
skipLF = false;
if (c == '\n') {
continue;
}
}
if (skipWhiteSpace) {
if (c == ' ' || c == '\t' || c == '\f') {
continue;
}
if (!appendedLineBegin && (c == '\r' || c == '\n')) {
continue;
}
skipWhiteSpace = false;
appendedLineBegin = false;
}
if (isNewLine) {
isNewLine = false;
if (c == '#' || c == '!') {
// 注释行,忽略.
isCommentLine = true;
continue;
}
}
// 读取真正的属性内容
if (c != '\n' && c != '\r') {
// 这里类似于ArrayList内部的容量扩充,使用字符数组来保存读取的内容.
lineBuf[len++] = c;
if (len == lineBuf.length) {
int newLength = lineBuf.length * 2;
if (newLength < 0) {
newLength = Integer.MAX_VALUE;
}
char[] buf = new char[newLength];
System.arraycopy(lineBuf, 0, buf, 0, lineBuf.length);
lineBuf = buf;
}
if (c == '\\') {
precedingBackslash = !precedingBackslash;
} else {
precedingBackslash = false;
}
} else {
// reached EOL 文件结束
if (isCommentLine || len == 0) {
isCommentLine = false;
isNewLine = true;
skipWhiteSpace = true;
len = 0;
continue;
}
if (inOff >= inLimit) {
inLimit = (inStream == null) ? reader.read(inCharBuf)
: inStream.read(inByteBuf);
inOff = 0;
if (inLimit <= 0) {
return len;
}
}
if (precedingBackslash) {
len -= 1;
skipWhiteSpace = true;
appendedLineBegin = true;
precedingBackslash = false;
if (c == '\r') {
skipLF = true;
}
} else {
return len;
}
}
}
}
}
- 请说一下Struts2的初始化?和类的创建?(从源代码角度出发)
- <SPAN style="FONT-WEIGHT: normal"> public XmlConfigurationProvider() {
- this("xwork.xml", true);
- }</SPAN>
public XmlConfigurationProvider() {
this("xwork.xml", true);
}
- <SPAN style="FONT-WEIGHT: normal">public class StrutsXmlConfigurationProvider
- extends XmlConfigurationProvider {
-
keywo
发表评论
相关推荐
一种纤维面料加热后整理辊筒机构的制作方法主要针对纤维面料后整理过程中加热问题的解决方案。现有的面料后整理技术往往采用辊筒机构通过浸渍方式与整理液进行反应,但当整理液需要加热到一定温度才能与面料充分复合...
本文将基于"电烙铁高手焊接资料整理"的主题,深入探讨电烙铁的使用技巧、焊接基础知识以及如何通过学习他人的经验提升焊接技能。 1. 电烙铁的基本认识: 电烙铁是用于焊接电子元器件的工具,主要由发热元件、烙铁头...
该专利涉及一种荧光防水透湿防护服面料涂层整理装置的制作方法,主要目标是解决现有技术中面料涂层处理存在的问题。在当前的面料涂层整理过程中,可能存在涂层不均匀、面料表面毛刺影响质量以及抗拉性不足的情况。...
手机表面处理工艺是指针对手机外观部分采用的各种修饰和加工方法。不同的表面处理工艺能够赋予手机不同的外观质感、色泽、耐磨性能及视觉效果。以下是对文档内容中提到的各表面处理工艺知识点的详细解析: ...
- **氢键**:一种特殊的分子间作用力,由氢原子与电负性很大的原子(如O、F、N等)结合而成。氢键具有一定的方向性和饱和性,强度介于范德华力和共价键之间。 #### 2. 原子的外层电子结构,晶体的能带结构 - **...
1. 无机抗静电剂的原理和作用机制:如何通过改变织物表面电导率来减少静电积累。 2. 不同类型的无机抗静电剂:如金属氧化物、硅酸盐等,它们的优缺点以及适用场景。 3. 整理工艺:包括预处理、添加方式、后处理等...
本文将详细探讨一种拒水拒油抗静电整理剂的制备方法,这种整理剂能够显著提高电子产品的耐候性、清洁性和安全性。 首先,拒水和拒油性能对于电子设备至关重要,因为水分和油脂可能会导致电路短路,损害电子元件的...
2. **制造工艺**:详细描述面料的生产过程,包括纤维处理、织造、染色和整理等步骤,如何确保抗静电性能的稳定。 3. **应用案例**:列举在电子行业中的实际应用,如电子元件的生产和组装线上的防静电工作服,或是...
在电子行业中,抗静电整理剂是一项重要的技术,它主要用于防止静电积累对电子设备造成损害。本文将详细讨论一种水性聚氨酯抗静电整理剂的制备方法,这是电子行业中解决静电问题的关键技术之一。 首先,我们要理解...
标题中的“电子-一种用于织物的新型抗静电整理剂”指的是在电子行业中,研发出了一种创新的抗静电处理技术,应用于纺织品制造。这种技术可能是为了改善织物的静电性能,使其更适合于电子设备制造、洁净室环境或者...
《基于层层静电自组装的微胶囊多功能整理剂:合成与应用工艺详解》 在电子行业中,材料科学和技术的发展起着至关重要的作用。本专题聚焦于一种创新的微胶囊多功能整理剂,它通过层层静电自组装技术进行合成,并广泛...
标题中的“电子-一种新型抗起球抗静电整理剂及其制备方法”表明这是一个关于电子纺织领域的技术,具体是关于纺织品表面处理的新技术。在电子行业中,虽然我们通常会想到电子设备、软件开发和通信技术,但其实电子...
41、各交直流电压对应爬电距离(UL60950+《PCB 制板中导线安全距离的确定》).pdf 51、使用电桥测量电感L、电容C时容易陷入的误区.pdf 61、直流电源模块纹波测试方法.pdf 62、《通信用电源设备通用试验方法》——软...
与传统电容器通过电解质中离子的排列储存能量不同,超级电容器则通过电极表面形成的双电层来储存能量,这一机制允许其在单位体积内存储更多的电荷。除此之外,一些超级电容器还集成了赝电容(Pseudocapacitance)...
3. 加工工艺流程:详述从原材料到成品的每一步加工步骤,包括染色、编织、整理等。 4. 抗静电机制:解析面料如何实现抗静电功能,可能涉及导电纤维的使用、表面抗静电处理等。 5. 保暖原理:分析面料如何实现保暖...
标题中的“电子-一种新型涤纶织物用抗静电整理剂组合物”表明这是一个关于电子行业,特别是与纺织材料相关的技术。在这个领域,抗静电整理是重要的技术环节,旨在提高涤纶织物的安全性和功能性。涤纶作为一种合成...
金属表面处理工艺是一种重要的工业技术,用于改善金属材料的外观、耐腐蚀性、硬度和耐磨性等特性。本文将详细探讨几种常见的金属表面处理工艺,包括电镀、电泳、镀锌、发黑、金属表面着色、抛丸和喷砂。...
常见电子类硬件笔试题整理(含答案) 超薄适配器的应用及实例 充电器知识 初级工程师PCB设计技巧 初级硬件工程师手册 磁性元件内部教程 电池充电器目录 电容知识大全 电源方式 电源管理指南 电源设计精彩问答 电源原理...
包括织造、前处理(去除杂质和预处理以提高染色和印花效果)、抗静电剂的选择与处理(可能包括浸渍、涂层或共混)、印花工艺(如滚筒印花、筛网印花、热转移印花等)、后处理(固色、定型等)以及最后的质检和整理。...