X509証明書情報を読み取ってTableView
に表示できるJavaアプリケーションを作成しようとしています。
しかし、以下のコードでこれらの情報を表示しようとすると問題が発生します
@FXML
private void handleHDD() throws CertificateException, IOException{
String userDir = System.getProperty("user.home");
File folder = new File(userDir +"\\Desktop\\Certificate_Folder");
File[] certificates = folder.listFiles();
if (certificates!=null){
String columnHeader[] = {"Nom","Version","N°série","Algorithme de signature","Emetteur","Valide à partir de","Valide jusqu'au","Objet","Clé publique"};
int sizeColumns = 9;
for (File file : certificates){
if(file.isFile()){
CertificateFactory cf = CertificateFactory.getInstance("X.509");
InputStream input = new FileInputStream(file);
X509Certificate cert = (X509Certificate) cf.generateCertificate(input);
input.close();
for (int j = 0; j < sizeColumns; j++) {
data.add(new CertificateModel(file.getName().replace(".der", ""),cert.getVersion(),cert.getSerialNumber().toString(),cert.getSigAlgName(),cert.getIssuerDN().toString(),cert.getNotBefore(),cert.getNotAfter(),cert.getSubjectDN().toString(),cert.getPublicKey().toString()));
TableColumn col = new TableColumn();
col.setText(columnHeader[j]);
col.setMinWidth(200);
col.setCellValueFactory(new PropertyValueFactory<CertificateModel, String>(columnHeader[j]));
table.getColumns().addAll(col);
}
table.setItems(data);
}
}
}
}
実行しようとすると、次の例外が発生します:Java.security.cert.CertificateException
これは完全な例外スタックです。
Exception in thread "JavaFX Application Thread" Java.lang.RuntimeException: Java.lang.reflect.InvocationTargetException
at javafx.fxml.FXMLLoader$MethodHandler.invoke(FXMLLoader.Java:1774)
at javafx.fxml.FXMLLoader$ControllerMethodEventHandler.handle(FXMLLoader.Java:1657)
at com.Sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.Java:86)
at com.Sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.Java:238)
at com.Sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.Java:191)
at com.Sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.Java:59)
at com.Sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.Java:58)
at com.Sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.Java:114)
at com.Sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.Java:56)
at com.Sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.Java:114)
at com.Sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.Java:56)
at com.Sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.Java:114)
at com.Sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.Java:56)
at com.Sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.Java:114)
at com.Sun.javafx.event.EventUtil.fireEventImpl(EventUtil.Java:74)
at com.Sun.javafx.event.EventUtil.fireEvent(EventUtil.Java:54)
at javafx.event.Event.fireEvent(Event.Java:198)
at javafx.scene.Scene$ClickGenerator.postProcess(Scene.Java:3470)
at javafx.scene.Scene$ClickGenerator.access$8100(Scene.Java:3398)
at javafx.scene.Scene$MouseHandler.process(Scene.Java:3766)
at javafx.scene.Scene$MouseHandler.access$1500(Scene.Java:3485)
at javafx.scene.Scene.impl_processMouseEvent(Scene.Java:1762)
at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.Java:2494)
at com.Sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.Java:381)
at com.Sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.Java:295)
at Java.security.AccessController.doPrivileged(Native Method)
at com.Sun.javafx.tk.quantum.GlassViewEventHandler.lambda$handleMouseEvent$354(GlassViewEventHandler.Java:417)
at com.Sun.javafx.tk.quantum.QuantumToolkit.runWithoutRenderLock(QuantumToolkit.Java:389)
at com.Sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.Java:416)
at com.Sun.glass.ui.View.handleMouseEvent(View.Java:555)
at com.Sun.glass.ui.View.notifyMouse(View.Java:937)
at com.Sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.Sun.glass.ui.win.WinApplication.lambda$null$148(WinApplication.Java:191)
at Java.lang.Thread.run(Thread.Java:748)
Caused by: Java.lang.reflect.InvocationTargetException
at Sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at Sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.Java:62)
at Sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.Java:43)
at Java.lang.reflect.Method.invoke(Method.Java:498)
at Sun.reflect.misc.Trampoline.invoke(MethodUtil.Java:71)
at Sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
at Sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.Java:43)
at Java.lang.reflect.Method.invoke(Method.Java:498)
at Sun.reflect.misc.MethodUtil.invoke(MethodUtil.Java:275)
at javafx.fxml.FXMLLoader$MethodHandler.invoke(FXMLLoader.Java:1771)
... 33 more
Caused by: Java.security.cert.CertificateException: Unable to initialize, Java.io.IOException: Short read of DER length
at Sun.security.x509.X509CertImpl.<init>(X509CertImpl.Java:198)
at Sun.security.provider.X509Factory.engineGenerateCertificate(X509Factory.Java:102)
at Java.security.cert.CertificateFactory.generateCertificate(CertificateFactory.Java:339)
at cm.camgovca.view.CertificateOverviewController.handleHDD(CertificateOverviewController.Java:98)
... 43 more
Caused by: Java.io.IOException: Short read of DER length
at Sun.security.util.DerInputStream.getLength(DerInputStream.Java:582)
at Sun.security.util.DerValue.<init>(DerValue.Java:252)
at Sun.security.util.DerInputStream.getDerValue(DerInputStream.Java:451)
at Sun.security.x509.X509CertImpl.parse(X509CertImpl.Java:1784)
at Sun.security.x509.X509CertImpl.<init>(X509CertImpl.Java:195)
... 46 more
CertificateOverview.Javaの98行目は
X509Certificate cert = (X509Certificate) cf.generateCertificate(input);
そして私の証明書はDERエンコード(.der)です
CertificateFactory#generateCertificate
のドキュメントを見ると、次のようになっています。
スロー:CertificateException-エラーの解析時。
したがって、コメントで示唆されているように、おそらく証明書ファイルは期待される形式ではありません。
特に、ドキュメントの次の行が興味深い場合があります。
X.509証明書の証明書ファクトリの場合、inStreamで提供される証明書はDERエンコードされている必要があり、バイナリまたは印刷可能(Base64)エンコードで提供されます。証明書がBase64エンコーディングで提供されている場合は、最初に----- BEGIN CERTIFICATE -----でバインドし、最後に----- END CERTIFICATE -----でバインドする必要があります。 。
詳細な例外メッセージを含む例外スタックを投稿すると、おそらくさらに役立つ可能性があります。
キーストアを定義している場合は、それが定義した場所にあり、アプリケーションがそれを読み取れることを確認してください。
私の場合、ヒントはスタックトレース( "Java.security.KeyStore.load")の少し下にありました。
Caused by: Java.io.IOException: Short read of DER length
at Sun.security.util.DerInputStream.getLength(DerInputStream.Java:582) ~[na:1.8.0_212]
at Sun.security.util.DerValue.init(DerValue.Java:391) ~[na:1.8.0_212]
at Sun.security.util.DerValue.<init>(DerValue.Java:332) ~[na:1.8.0_212]
at Sun.security.util.DerValue.<init>(DerValue.Java:345) ~[na:1.8.0_212]
at Sun.security.pkcs12.PKCS12KeyStore.engineLoad(PKCS12KeyStore.Java:1938) ~[na:1.8.0_212]
at Java.security.KeyStore.load(KeyStore.Java:1445) ~[na:1.8.0_212]
at org.Apache.Tomcat.util.security.KeyStoreUtil.load(KeyStoreUtil.Java:67) ~[Tomcat-embed-core-9.0.27.jar!/:9.0.27]