JAVA
文章平均质量分 61
我要打分位
这个作者很懒,什么都没留下…
展开
-
关于Java中buffer类的学习
一些学习笔记:首先, Buffer 是一个线性的有限长度的特定基本数据的序列。 除了基础数据外,它还包括一些基础操作和属性, 比如capacity, limit 和 position。实际使用中使用特定的子类来处理数据。每个子类都定义了两套get/put的操作。相对位置操作 (Relative )。 从当前位置position读写一个或者多个元素, 并posit原创 2015-08-06 13:28:37 · 673 阅读 · 0 评论 -
gets() - fgets() & strcpy() - strncpy()
Never use gets. It offers no protections against a buffer overflow vulnerability (that is, you cannot tell it how big the buffer you pass to it is, so it cannot prevent a user from entering a line l原创 2016-02-22 15:29:11 · 607 阅读 · 0 评论 -
Could not start GlassFish Server 4.1 occupied by null
netstat -aon | find ":8080" | find "LISTENING"taskkill /pid 1228 /f原创 2016-04-02 12:16:06 · 767 阅读 · 0 评论