本文目录一览:
- 1、java中".next"的用法问题
- 2、java中next函数是什么意思?并举例。谢谢
- 3、java中 .next 的用法含义(急)
- 4、java中next()方法是干什么的?
- 5、如何用java编程实现生成csr
java中".next"的用法问题
res.next完成两个动作,
1、数据库指针指向下一条记录;
2、如果没有返回false,自然循环退出;如果有记录,完成第二个动作,把记录内容存入res中,并返回true,这样在循环体中就可以使用res对象读取记录中的内容了
java中next函数是什么意思?并举例。谢谢
迭代取得下一个值,例如:
import java.util.*;
public class Hello {
public static void main(String args[]) {
HashSet s = new HashSet();
s.add("hello");
s.add("java");
Iterator i = s.iterator();//获得对应哈希Set的迭代器
while(i.hasNext()){//判断Set中是否还有值
System.out.println(i.next());//打印取得的值
}
}
}
java中 .next 的用法含义(急)
这是数据结构的内容
单链表节点Node
比如说有A,B,C,D四个Node对象,它们按顺序一个接一个
next指的是下一个
A.next=B;
B.next=C;
C.next=D;
root指的是上一个
B.root=A;
C.root=B;
D.root=C;
java中next()方法是干什么的?
next() 不换行
nextLine() 切换到下一行 in.nextLine();返回的是一个长度为0的空字符串:
可以在input = in.nextLine(); 后加
System.out.prinln("前"+input+"后,字符长度="+input.length());
你就能看到
next()要得到有效标记才能返回值,而nextLine()则不管这个,只要有当前行就能返回,当前行的剩余字符是0个照样返回。
修改方法有两种:
1、在每次in.nextDouble();后加一句in.nextLine();就不会出现这个问题了。
因为nextDouble没有义务处理换行,要用nextLine来处理换行,这样后面的input = in.nextLine(); 时没有新行,就会等待输入。
2、把while判断改为while(!input.equals("Y"));或者while (input.equals("N")(input.length()!=0));
如何用java编程实现生成csr
public java.security.cert.Certificate certToX509Cert(X509Certificate cert) {
try {
CertificateFactory cf = new CertificateFactory();
InputStream is = new ByteArrayInputStream(cert.getEncoded());
Collection coll = cf.engineGenerateCertificates(is);
java.security.cert.Certificate jcrt = null;
Iterator it = coll.iterator();
if (it.hasNext()) {
jcrt = (java.security.cert.Certificate) it.next();
return jcrt;
}
} catch (CertificateEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (CertificateException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
public int storeP12(String caCertPath, String certPath, String pemPath, String pemPassword,
String p12Path, String p12Password) {
KeyPair kp;
try {
kp = getPrivateKey(pemPath, pemPassword);
X509Certificate caCert = getCertificate(caCertPath);
X509Certificate cert = getCertificate(certPath);
java.security.cert.Certificate[] chain = new java.security.cert.Certificate[2];
chain[0] = certToX509Cert(cert);
chain[1] = certToX509Cert(caCert);
KeyStore ks = KeyStore.getInstance("PKCS12", "BC");
ks.load(null, null);
ks.setKeyEntry(parseCertDN(cert.getSubjectDN().getName(), "CN"),
kp.getPrivate(), null, chain);
FileOutputStream fOut = new FileOutputStream(p12Path);
ks.store(fOut, p12Password.toCharArray());
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return 0;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}
blog.csdn.net/jinhill/article/details/17612273