- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这并不重要,这很酷。当我执行包含嵌入空格的文件参数的命令时,该命令失败。不过,我可以密码。我还可以从命令行运行完全相同的命令。这是在 Linux Mint 上运行的——同样,这并不重要。这是我日志中的一个片段,显示了 pwd 命令和第二个命令(flac 通过管道传输到 lame)。
2017-06-26T08:50:00.750 runCommand pwd, /home/worldwidewilly/Music/album-rip/Dixie Cups, The
2017-06-26T08:50:00.789 OUT: /home/worldwidewilly/Music/album-rip/Dixie Cups, The
2017-06-26T08:50:00.790 ERROR:
2017-06-26T08:50:00.791 runCommand flac -cd "Iko Iko".flac | lame -b 320 - "Iko Iko".mp3, /home/worldwidewilly/Music/album-rip/Dixie Cups, The
2017-06-26T08:50:00.794 OUT:
2017-06-26T08:50:00.795 ERROR:
flac 1.3.0, Copyright (C) 2000-2009, 2011-2013 Josh Coalson & Xiph.Org Foundation
flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
welcome to redistribute it under certain conditions. Type `flac' for details.
"Iko: ERROR initializing decoder
init status = FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE
An error occurred opening the input file; it is likely that it does not exist
or is not readable.
Iko".flac: ERROR initializing decoder
init status = FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE
An error occurred opening the input file; it is likely that it does not exist
or is not readable.
|: ERROR initializing decoder
init status = FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE
An error occurred opening the input file; it is likely that it does not exist
or is not readable.
lame: ERROR initializing decoder
init status = FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE
An error occurred opening the input file; it is likely that it does not exist
or is not readable.
"Iko: ERROR initializing decoder
init status = FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE
An error occurred opening the input file; it is likely that it does not exist
or is not readable.
Iko".mp3: ERROR initializing decoder
init status = FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE
An error occurred opening the input file; it is likely that it does not exist
or is not readable.
它似乎真的不喜欢 flac 或 lame 命令中歌曲名称中嵌入的空格。它似乎也不喜欢管道。
有问题的命令从命令行运行得很好。
worldwidewilly@hal9000 ~/Music/album-rip/Dixie Cups, The $ flac -cd "Iko Iko".flac | lame -b 320 - "Iko Iko".mp3
flac 1.3.0, Copyright (C) 2000-2009, 2011-2013 Josh Coalson & Xiph.Org Foundation
flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
welcome to redistribute it under certain conditions. Type `flac' for details.
Iko Iko.flac: done
LAME 3.99.5 64bits (http://lame.sf.net)
Using polyphase lowpass filter, transition band: 20094 Hz - 20627 Hz
Encoding <stdin> to Iko Iko.mp3
Encoding as 44.1 kHz j-stereo MPEG-1 Layer III (4.4x) 320 kbps qval=3
<小时/>
编辑
<小时/>使用sh -c敲响警钟。六七年前我在 Gradle 脚本中使用过它。然而,我所拥有的仍然不起作用。我相信我正在按照建议做。现在,您会从下面的日志中注意到我收到 -cd: 1: -cd: 语法错误:未终止的引号字符串。做了一些研究,似乎 shell 正在进行分词。不知道我应该对此做什么。我看到的解决方案不适用于 JVM,看起来不合适。
这是我的代码(我最初没有包含):
def mp3FromFlac(flac) {
log "mp3FromFlac ${flac.name}"
def name = flac.name - '.flac'
def path_to_song = flac.parentFile.absolutePath
def flacCmd = /flac -cd "${name}".flac/
def lameCmd = /lame -b 320 -q 0 - "${name}".mp3/
log "mp3FromFlac: flacCmd: ${flacCmd}"
log "mp3FromFlac: lameCmd: ${lameCmd}"
def cmd = /sh -c '${flacCmd} | ${lameCmd}'/
log "mp3FromFlac: cmd: ${cmd}"
def proc = cmd.execute(null, new File(path_to_song))
log "mp3FromFlac: OUT: ${proc.in.text}"
log "mp3FromFlac: ERROR: ${proc.err.text}"
}
而且,这是我当前的日志文件:
2017-06-27T15:12:42.436 mp3FromFlac Iko Iko.flac
2017-06-27T15:12:42.437 mp3FromFlac: flacCmd: flac -cd "Iko Iko".flac
2017-06-27T15:12:42.437 mp3FromFlac: lameCmd: lame -b 320 -q 0 - "Iko Iko".mp3
2017-06-27T15:12:42.437 mp3FromFlac: cmd: sh -c 'flac -cd "Iko Iko".flac | lame -b 320 -q 0 - "Iko Iko".mp3'
2017-06-27T15:12:42.479 mp3FromFlac: OUT:
2017-06-27T15:12:42.480 mp3FromFlac: ERROR: -cd: 1: -cd: Syntax error: Unterminated quoted string
最佳答案
由于您没有指定如何尝试从 Groovy 调用它,我只是进行了一些测试以向您展示变体:
/cat foo bar/.execute().err.text
Result: cat: foo: No such file or directory
cat: bar: No such file or directory
<小时/>
/cat 'foo bar'/.execute().err.text
Result: cat: 'foo bar': No such file or directory
<小时/>
/cat 'foo bar' | wc -l/.execute().err.text
Result: cat: unknown option -- l
Try 'cat --help' for more information.
<小时/>
/sh -c 'cat "foo bar" | wc -l'/.execute().err.text
Result: cat: 'foo bar': No such file or directory
<小时/>
(/cat 'foo bar'/.execute() | /wc -l/.execute()).in.text
Result: 0
因此,如果您使用引号,它们会正确转义空格。但你当然不能使用管道,因为这是一个 shell 结构。因此,您要么必须将调用包装在 sh -c
中,要么在 Groovy 中而不是在命令中执行管道操作。
关于java - 在 groovy 运行过程中,命令在文件 arg 中包含空格而失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44761835/
我有这个代码。为了让它工作,我必须使用 Args&&... 而不是 Args... 或 Args&... 我注意到 args 从 & 转换为 const& 或 && 转换为 &。 Args...Arg
当我定义类时,我总是去 Class A(object): def __init__(self, arg): self.arg = arg def print_arg(s
假设我想定义两个 {Type} 类的变量。构造函数采用 1 个参数。下面两种方式是否完全等价(编译成相同的目标代码)? Type a(arg), b(arg); 和 Type a(arg); Type
(旁白:我是一名 Perl 程序员,正如您所知,这是我的第一个重要的 Java 程序。简单的术语将不胜感激。) 我有以下启动器作为编码工作: import java.lang.reflect.*; i
Math.nextUp(arg) 始终与 arg + Math.ulp(arg) 相同,还是我遗漏了什么? System.out.println( 0.5 + Math.ulp(0.5));
今天我在学习完美转发,我创建了这个代码示例 #include #include template auto toStdFun(Function&& fun, Args&&...ar
我想知道你会选择哪个选项? putStrLn (show randomNum) putStrLn $ show randomNum (putStrLn . show) randomNum 所有选项在语
我试图在 visual studio 2012 中编译一个库,它最初是用 c++ 为 visual studio 2015 编写的。我有一个错误说 'class' missing tag。 错误消息的
我在下面的代码中遇到了运行时异常ArrayIndexOutOfBoundException,行中: if ( args[0].equals("t") || args[0].equals("time")
我有以下代码 import React, { Component } from "react"; import { Accounts } from "meteor/accounts-base"; ex
这个问题已经有答案了: Difference between Arrays and 3 dots (Varargs) in java (3 个回答) 已关闭 5 年前。 受学校线性代数 I 和 II
所以我定义了一个函数: def getDistnace(self, strings, parentD, nodeName, nodeDistance): 我用它来调用: Node.getDistnac
这个问题在这里已经有了答案: subprocess.call() arguments ignored when using shell=True w/ list [duplicate] (2 个答案
我想将参数传递给 java 应用程序,但喜欢 linux 应用程序风格。 java 中的main 方法对所有参数使用一个String 数组。在 Linux 中,大多数应用程序接受如下参数:ls -l
这是我的代码片段 #include void change(int a[]){ printf("%p\n",&a); } int main(){
我需要使用 python 3.6 subprocess.run() 函数发出以下命令: gsettings set org.gnome.shell enabled-extensions "['appl
这两个函数是否有任何有意义的不同?有什么理由通常更喜欢一个而不是另一个吗? void foo(auto x, auto &... y) { /* ... */ } template void foo(
例如: def m(arg, ...args) { println "arg: $arg" println "args: $args" } m('arg', k:'v') 输出: ar
我对 Java 还很陌生。目前正在尝试将 args[] 中给出的文件名传递给此 FileReader,但当我编译时,它说找不到指定的文件。如果我对文件名进行硬编码,它就可以正常工作。这应该如何运作?
为什么这是一个语法错误??做这件事的合适方法是什么? >>> def f(*args, option=None): File "", line 1 def f(*args, option=
我是一名优秀的程序员,十分优秀!