Pythonを使用して.jarファイルにファイルを追加しようとしていますが、メインクラスが見つからなかったというエラーが発生し続けます:jar。
def add_to_jar():
jarfile = "jarfile.jar"
skin_image= Skin_Name.text() #this stores the full path to to file to be appended
cmd = 'java jar uf ' + jarfile + " " + skin_image
proc = subprocess.Popen(cmd, shell=True)
助けていただければ幸いです