English 中文(简体)
是否有可能知道由《视觉演播室法》任务执行的指挥?
原标题:Is it possible to know the command executed by a Visual Studio Code task?

我正在 Java使用VS法典,利用贾瓦推广包进行节目。 我可以开始用“Rebuild All”纽顿建造我的项目,或用“Export Jar. ......”制作一个jar。

这是一项一次性使用“航站”的任务,我可以进入:

 *  Executing task: java (buildArtifact): default

焦尔案卷的生成是巨大的,但我很想知道使用了哪条指挥系统,以便我能够用双双双字母使档案自动化。

I tried looking inside VS Code task configuration "tasks.json" but didn t find much.

问题回答

jar cf jar-file content-file(s)

should do the trick. The input files are space sperated.

You can click on the OUTPUT panel and select Language Support for Java to see the log of the execution of the Java extension after you clicked on Export Jar..., there may be information in there about the command you are looking for.

enter image description here

你们也只能学习如何人工生成jar档案,here a related document , 您可读(Heading 3<>>。 你还可以寻找更多的信息。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...