2010-04-27 37 views

回答

1

像這樣的東西可能會奏效:

CMSSignedData signedData = new CMSSignedData(signedFileBytes); 

// Now get the content contained in the CMS EncapsulatedContentInfo 
CMSProcessable processable = signedData.getSignedContent();  

然後,您應該能夠得到處理的流從該數據可以被讀取。

相關問題