将自定义标签添加到 jar 清单

发布于 2024-11-06 04:34:31 字数 111 浏览 0 评论 0 原文

我有一个要求,我想将一些用户定义的标签放入 jar 清单文件中。我想知道是否可以这样做?

  • 如果是的话,有什么例子吗?
  • 如果没有。 :( 为什么不呢?

I have a requirement wherein I wanted to put some user defined tags in jar manifest file. I was wondering if it is possible to do so?

  • If yes, any example?
  • if no. :( why not?

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

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

发布评论

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

评论(2

悲歌长辞 2024-11-13 04:34:31

我想知道是否可以这样做?

是的。

如果是的话,有什么例子吗?

silly-word: supercalafragilisticexpyaladocious

定制足够适合您吗?

具体请参阅 JAR 文件规范:清单规范 有关属性和值的详细信息。

  • 清单文件:主节换行符*单个节
  • 主要部分:版本信息换行符*主要属性
  • 版本信息:清单版本:版本号
  • 版本号:数字+{.数字+}*
  • main-attribute:(任何合法的主属性)换行符
  • individual-section:名称:值换行符*perentry-attribute
  • perentry-attribute:(任何合法的 perentry 属性)换行符
  • 换行符:CR LF |低频 | CR(后面不跟 LF)
  • 数字:{0-9}

在上面的规范中,可以出现在主部分中的属性被称为主属性,而可以出现在各个部分中的属性被称为每条目属性。某些属性可以同时出现在主部分和各个部分中,在这种情况下,每个条目的属性值将覆盖指定条目的主属性值。两种类型的属性定义如下。 ..

I was wondering if it is possible to do so?

Yes.

If yes, any example?

silly-word: supercalafragilisticexpyaladocious

Custom enough for you?

See specifically the JAR File Specification: Manifest Specification for details on attributes and values.

  • manifest-file: main-section newline *individual-section
  • main-section: version-info newline *main-attribute
  • version-info: Manifest-Version : version-number
  • version-number : digit+{.digit+}*
  • main-attribute: (any legitimate main attribute) newline
  • individual-section: Name : value newline *perentry-attribute
  • perentry-attribute: (any legitimate perentry attribute) newline
  • newline : CR LF | LF | CR (not followed by LF)
  • digit: {0-9}

In the above specification, attributes that can appear in the main section are referred to as main attributes, whereas attributes that can appear in individual sections are referred to as per-entry attributes. Certain attributes can appear both in the main section and the individual sections, in which case the per-entry attribute value overrides the main attribute value for the specified entry. The two types of attributes are defined as follows. ..

Bonjour°[大白 2024-11-13 04:34:31

只要遵守 格式。那么,你的问题到底是什么?

You can write pretty much whatever you want in your manifest file as long as you obey the format. So, what is your question really?

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