如何解析安全证书子组件?
我正在从安全证书中读取主题,该证书具有以下格式...
CN=x,OU=y,O=z,ST=v,C=COM
我想解析此 String
并仅获取 CN
。有什么简单的方法可以做到这一点吗?
I'm reading the subject from a security certificate, which has the following format...
CN=x,OU=y,O=z,ST=v,C=COM
I want to parse this String
and get the CN
only. Is there any easy way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这里可以使用简单的正则表达式吗?
没有尝试过,就超出了我的想象:
Is it possible to use simple regular expressions here?
Without tried it and out of my mind:
Omnaest 答案的工作版本:
Working version of Omnaest's answer:
您可以使用jndi的CompoundName
作为示例,请查看此链接
编辑:添加了一个工作示例
要创建上下文,您必须连接到 LDAP 服务器。很容易进行字符串解析并获得第一个 rdn。但不要到那里! DN 有不同的格式。在 DCE 格式中,dn 将被分隔为 CN=x/OU=y/O=z/ST=v/C=COM
编辑:添加了另一个示例,无需连接到 ldap 服务器
You can use CompoundName of jndi
For an example have a look at this link
Edit: Added a working example
To create the context you have to connect to a ldap server however. Its easy to do a string parsing and get the first rdn. But do not get there! The DN have different formats. In DCE format the dn will be separated as CN=x/OU=y/O=z/ST=v/C=COM
EDIT: Added another example without connecting to ldap server