breakpoint 断点 browser applications 浏览器应用(程序) browser-accessible application 可经由浏览器访问的应用程序 build 编连(专指编译和连接 built-in 内建、内置 bus 总线 business 业务、商务(看场合) business Logic 业务逻辑 business rules 业务规则 buttons 按钮 bug 臭虫 by/through 通过 byte 位元组(由...
H. host 主机 height 高度I. init(=initialize) 初始化 input 输入 implement 实现 instance 实例 io(=input/output) 输出输入 interrupted 中断 int(=integer) 整型 item 元素 interface 接口 inner 内部的 import 导入 index 索引 image 图像J. Java 爪哇 JDK(Java Development Kit) Java 开发工具 JSP(Java S...
FileNotFoundException 找不到文件异常 EOFException 文件结束异常 InterruptedException (线程)中断异常 try 尝试 catch 捕捉 finally 最后 throw 投、掷、抛 throws 投、掷、抛 print Stack Trace() 打印堆栈信息 get Message() 获得错误消息 get Cause() 获得异常原因 method 方法 able 能够 instance 实例 check 检...
I. init(=initialize)初始化 input 输入 implement 实现 instance 实例 io(=input/output)输出输入 interrupted 中断 int(=integer)整型 item元素 interface 接口 inner 内部的 import 导入 index 索引image 图像 J. Java 爪哇 JDK(Java Development Kit) Java开发工具 JSP(Java Server Page) Java服务页 JVM(Java ...
With an ordinary, nondurable subscriber, the subscriber and the subscription begin and end at the same point and are, in effect, identical. When a subscriber is closed, the subscription also ends. Here, create stands for a call to Session.createConsumer with a Topic argument, and close ...
詳細メッセージを指定して EOFException を構築します。 eolIsSignificant(boolean) - class java.io.StreamTokenizer のメソッド 行の終わりをトークンとして処理するかどうかを判別します。 eos - class java.util.zip.GZIPInputStream の変数 入力ストリームの終端を表します。 equal(Any) ...
Okio builds onjava.io.Socketfor connectivity. Create your socket as a server or as a client, then useOkio.source(Socket)to read andOkio.sink(Socket)to write. These APIs also work withSSLSocket. You should use SSL unless you have a very good reason not to!
fill()) throw new EOFException(sm.getString("iib.eof.error")); } chr = buf[pos]; if (chr == Constants.CR) { // 回车 // Skip } else if (chr == Constants.LF) { // 换行 pos++; return false; // 在解析某一行时遇到一个回车换行了,则表示请求头的数据结束了 } else { break; ...
break (跳出循环):直接跳出循环,执行循环体后的代码 continue (继续) : 中断本次循环,并开始下一轮循环 return (返回) :返回方法指定类型的值或结束方法的执行 instanceof(实例):一个二元操作符,和==、>、<是同一类的。测试它左边的对象是否是它右边的类的实例,返回boolean类型的数据 ...
Okio builds on java.io.Socket for connectivity. Create your socket as a server or as a client, then use Okio.source(Socket) to read and Okio.sink(Socket) to write. These APIs also work with SSLSocket. You should use SSL unless you have a very good reason not to!