如何将publickey.xml文件的路径添加到android中的InputStream中? publickey.xml 文件放在哪里?

发布于 2024-12-07 13:38:58 字数 593 浏览 0 评论 0原文

//如何在这里放置publickeyfile.xml的路径?

InputStream in =

//获取输入流的objectipnutstream

  ObjectInputStream oin =
new ObjectInputStream(new BufferedInputStream(in));
  try {
BigInteger m = (BigInteger) oin.readObject();
BigInteger e = (BigInteger) oin.readObject();
RSAPublicKeySpec keySpec = new RSAPublicKeySpec(m, e);
KeyFactory fact = KeyFactory.getInstance("RSA");
PublicKey pubKey = fact.generatePublic(keySpec);

  } catch (Exception e) {
throw new RuntimeException("Spurious serialisation error", e);
  } finally {
oin.close();
  }

//how to place the path for publickeyfile.xml here?

InputStream in =

//the objectipnutstream that gets the inputstream

  ObjectInputStream oin =
new ObjectInputStream(new BufferedInputStream(in));
  try {
BigInteger m = (BigInteger) oin.readObject();
BigInteger e = (BigInteger) oin.readObject();
RSAPublicKeySpec keySpec = new RSAPublicKeySpec(m, e);
KeyFactory fact = KeyFactory.getInstance("RSA");
PublicKey pubKey = fact.generatePublic(keySpec);

  } catch (Exception e) {
throw new RuntimeException("Spurious serialisation error", e);
  } finally {
oin.close();
  }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月下凄凉 2024-12-14 13:38:58
  1. 在项目中创建一个 res>raw 文件夹,
  2. 将 publickeyfile.xml 文件放入新文件夹
  3. “Inputstream is = myResources.openRawResource(R.raw.publickeyfile)”

...它应该可以工作

  1. create a res>raw folder in the project
  2. put the publickeyfile.xml file in the new folder
  3. "Inputstream is = myResources.openRawResource(R.raw.publickeyfile)"

...it should work

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文