- 浏览: 4752457 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
bzhao:
你也应该可以这样:(not tested)./rbtunnel ...
在Bash脚本中怎么关闭文件描述符? -
bzhao:
如果有A进程原代码情况下,通过如下调用,把他的子进程继承关闭则 ...
在Bash脚本中怎么关闭文件描述符? -
Master-Gao:
楼主咋没分析下源码呢?
我使用过的Linux命令之dirname - 截取给定路径的目录部分 -
jiedushi:
tail -F 就可以吧
Linux下实时跟踪log4j日志文件的bash脚本 - 增强了tail -f的功能 -
java_is_new:
新手学习了,就是不明白为一个网卡配多个ip有什么用
我使用过的Linux命令之ifconfig - 网络配置命令
Bash字符串处理(与Java对照) - 5.字符串输入(读取字符串)
In Java
Scanner类:Scanner.hasNext() & Scanner.next() & Scanner.hasNextLine() & Scanner.nextLine()
A Scanner breaks its input into tokens using a delimiter pattern, which by default matches whitespace. The resulting tokens may then be converted into values of different types using the various next methods.
A scanning operation may block waiting for input.
The next() and hasNext() methods and their primitive-type companion methods (such as nextInt() and hasNextInt()) first skip any input that matches the delimiter pattern, and then attempt to return the next token. Both hasNext and next methods may block waiting for further input. Whether a hasNext method blocks has no connection to whether or not its associated next method will block.
下面是关于 Scanner.hasNext() 和 Scanner.next() 的例子,用于读取以空白分隔的标识符。
Scanner scanner = new Scanner(System.in); while (scanner.hasNext()) { String msg = scanner.next(); System.out.println(msg); }
下面是关于 Scanner.hasNextLine() 和 Scanner.nextLine() 的例子,用于读取输入数据行。
Scanner scanner = new Scanner(System.in); while (scanner.hasNextLine()) { String msg = scanner.nextLine(); System.out.println(msg); }
更详细的说明请参考:http://download.oracle.com/javase/1,5.0/docs/api/java/util/Scanner.html
Console类:System.console() & Console.readLine() & Console.readPassword()
Console类是JDK6加入的,它是对控制台的封装。使用 System.console() 可以获得与当前Java虚拟机关联的控制台,如果有的话。Console.readLine可以读取一行,Console.readPassword可以读取密码。
extends Object
implements Flushable
Methods to access the character-based console device, if any, associated with the current Java virtual machine.
Whether a virtual machine has a console is dependent upon the underlying platform and also upon the manner in which the virtual machine is invoked. If the virtual machine is started from an interactive command line without redirecting the standard input and output streams then its console will exist and will typically be connected to the keyboard and display from which the virtual machine was launched. If the virtual machine is started automatically, for example by a background job scheduler, then it will typically not have a console.
If this virtual machine has a console then it is represented by a unique instance of this class which can be obtained by invoking the System.console() method. If no console device is available then an invocation of that method will return null.
String readLine()
Reads a single line of text from the console.
char[] readPassword()
Reads a password or passphrase from the console with echoing disabled
下面是一个关于Console的示例代码:
Console console = System.console(); // 获得Console实例对象 if (console != null) { // 判断是否有控制台的使用权 String user = new String(console.readLine("Enter username:")); // 读取整行字符 String pwd = new String(console.readPassword("Enter passowrd:")); // 读取密码,输入时不显示 console.printf("Username is: " + user + "\n"); // 显示用户名 console.printf("Password is: " + pwd + "\n"); // 显示密码 } else { System.out.println("Console is unavailable."); // 提示无控制台使用权限 }
更详细的说明请参考:·http://download.oracle.com/javase/6/docs/api/java/io/Console.html
In Bash
从标准输入读取
使用read命令读取字符串到变量中。但是,如果有反斜杠,将起到转义的作用。\\表示一个\号,\<newline>表示续行,\<char>代表<char>本身。
格式:read VAR
格式:read -p <prompt> VAR
[root@node56 ~]# read VAR
hello world
[root@node56 ~]# echo $VAR
hello world
[root@node56 ~]# read -p "Input your number: " VAR
Input your number: 123
[root@node56 ~]# echo $VAR
123
[root@node56 ~]# read VAR
yes\tno
[root@node56 ~]# echo $VAR
yestno
[root@node56 ~]#
读取一行文本,但是取消反斜杠的转义作用。
格式:read -r VAR
格式:read -p <prompt> -r VAR
line. In particular, a backslash-newline pair may not be used as a line continuation.
[root@node56 ~]# read -r VAR
yes\tno
[root@node56 ~]# echo $VAR
yes\tno
[root@node56 ~]#
关于read -p
此参数用于在读取变量之前显示提示信息。如果输入重定向了,就不会显示,比如重定向从文件中读取。
也就是说,read -p PROMPT VAR 不等同于 echo PROMPT; read VAR 的组合。
Display prompt on standard error, without a trailing newline, before attempting to read any
input. The prompt is displayed only if input is coming from a terminal.
读取密码(输入的字符不回显)
格式:read -s PASSWORD
格式:read -p <prompt> -s PASSWORD
[root@node56 ~]# echo $PASSWORD
[root@node56 ~]# read -s PASSWORD
[root@node56 ~]# echo $PASSWORD
12345
[root@node56 ~]# read -p "Input password: " -s PASSWORD
Input password:
[root@node56 ~]# echo $PASSWORD
54321
读取指定数量字符
格式:read -n <nchars> VAR
格式:read -p <prompt> -n <nchars> VAR
read returns after reading nchars characters rather than waiting for a complete line of input.
[root@node56 ~]# read -p "Input two chars: " -n 2 VAR
Input two chars: 12
[root@node56 ~]# echo $VAR
12
[root@node56 ~]#
在指定时间内读取
格式:read -t <seconds> VAR
格式:read -p <prompt> -t <seconds> VAR
Cause read to time out and return failure if a complete line of input is not read within timeout
seconds. This option has no effect if read is not reading input from the terminal or a pipe.
[root@node56 ~]# read -p "Input some words in 5 seconds: " -t 5 VAR
Input some words in 5 seconds: [root@node56 ~]#
从文件中读取
格式:read VAR <file.txt
对于read命令,可以指定-r参数,避免\转义。
格式:read -r VAR <file.txt
错误:cat file.txt | read VAR (此处read命令将会在子进程中执行,子进程无法更改父进程的变量)
[root@web ~]# cat input.txt
Some text here
with backslash \ here
dollar $HOME meet
[root@web ~]# cat input.txt | read VAR
[root@web ~]# echo $VAR
[root@web ~]# read VAR <input.txt
[root@web ~]# echo $VAR
Some text here
[root@web ~]# read VAR1 VAR2 VAR3 VAR4<input.txt
[root@web ~]# echo "VAR1=$VAR1 VAR2=$VAR2 VAR3=$VAR3 VAR4=$VAR4"
VAR1=Some VAR2=text VAR3=here VAR4=
[root@web ~]# read VAR1 VAR2<input.txt
[root@web ~]# echo "VAR1=$VAR1 VAR2=$VAR2"
VAR1=Some VAR2=text here
[root@web ~]#
上面的直接对read命令输入重定向,只能读取输入文件中的一行。
如果需要读取整个文件,最好将其写在一个代码块中。
The code block enclosed in braces may have I/O redirected to and from it.
Unlike a command group within (parentheses), as above, a code block enclosed by {braces} will not normally launch a subshell.
{ read LINE1; read LINE2; read LINE3; } <input.txt
注意每个read命令之后都要以分号结束。
[root@web ~]# { read LINE1; read LINE2; read LINE3; } <input.txt
[root@web ~]# echo $LINE1
Some text here
[root@web ~]# echo $LINE2
with backslash here
[root@web ~]# echo $LINE3
dollar $HOME meet
[root@web ~]#
上面LINE2中\ 没有读取出来,因为在没有加上-r参数时,read会转义。
现在加上-r参数来测试一下。
{ read -r LINE1; read -r LINE2; read -r LINE3; } <input.txt
[root@web ~]# { read -r LINE1; read -r LINE2; read -r LINE3; } <input.txt
[root@web ~]# echo $LINE1
Some text here
[root@web ~]# echo $LINE2
with backslash \ here
[root@web ~]# echo $LINE3
dollar $HOME meet
[root@web ~]#
从Here Document读取
错误:read VAR <<EOF
some string
EOF
正确:{ read VAR; } <<EOF
some string
EOF
问题:为什么写在代码块中才能读取呢?
[root@web ~]# read VAR <<EOF
> some string
> EOF
[root@web ~]# echo "$VAR"
[root@web ~]# { read VAR; } <<EOF
> hello
> EOF
[root@web ~]# echo "$VAR"
hello
[root@web ~]#
从Here String读取
read VAR <<< "some string"
read VAR <<< "$STR"
[root@web ~]# read VAR <<< "some string"
[root@web ~]# echo $VAR
some string
[root@web ~]#
补充:关于 cat input.txt | read VAR 的问题
先说一下我对管道线的理解:管道线两侧的命令,前一个命令的输出(标准输出),将作为后一个命令的输入(标准输入)。两侧的命令都是在子进程中执行的,都有各自独立的地址空间,子进程会继承(复制)父进程所有的环境变量。子Shell(subshell)是一种特殊的子进程,它会继承(复制)父Shell的所有变量;对于非子Shell进程(外部命令),只有环境变量会被继承(复制)。但是,子进程一旦启动,它所有的变量只在它的进程空间中有效,它对变量的修改都是对自己范围之内的变量的修改,对父进程相同名称的变量是没有影响的。而子进程启动之后,它的父进程对父进程变量的修改,对子进程相同名称的变量也是没有影响的。
pipe. Passes the output (stdout) of a previous command to the input (stdin) of the next one, or to the shell. This is a method of chaining commands together.
A pipe, as a classic method of interprocess communication, sends the stdout of one process to the stdin of another. In a typical case, a command, such as cat or echo, pipes a stream of data to a filter, a command that transforms its input for processing.
The output of a command or commands may be piped to a script.
A pipe runs as a child process, and therefore cannot alter script variables.
variable="initial_value"
echo "new_value" | read variable
echo "variable = $variable" # variable = initial_value
[root@web ~]# cat input.txt
Some text here
with backslash \ here
dollar $HOME meet
[root@web ~]# cat input.txt | read VAR
[root@web ~]# echo $VAR
上面的cat input.txt的输出将作为read VAR的输入。
[root@web ~]# cat input.txt | { read VAR; echo $VAR; }
Some text here
可以看到管道线后面的子Shell中确实读到了值。
[root@web ~]# echo $VAR
但父Shell中的相同变量不会改变。
[root@web ~]#
本文链接:http://codingstandards.iteye.com/blog/1170586 (转载请注明出处)
返回目录:Java程序员的Bash实用指南系列之字符串处理(目录)
上节内容:Bash字符串处理(与Java对照) - 4.字符串输出
下节内容:Bash字符串处理(与Java对照) - 6.判断字符串是否为空(不为空)
评论
做了一下补充,看看能否说明问题
3ks , 理解了.
做了一下补充,看看能否说明问题
发表评论
-
Bash字符串处理(与Java对照) - 22.判断字符串是否数字串
2011-10-25 09:25 5496Bash字符串处理(与Java对照) - 22.判断字符串是否 ... -
Bash字符串处理(与Java对照) - 21.字符串正则匹配
2011-10-24 09:07 11073Bash字符串处理(与Java对照) - 21.字符串正则匹配 ... -
Bash字符串处理(与Java对照) - 20.查找子串的位置
2011-10-19 09:14 6829Bash字符串处理(与Java对照) - 20.查找子串的位置 ... -
Bash字符串处理(与Java对照) - 19.查找字符的位置
2011-10-18 09:06 5950Bash字符串处理(与Java对照) - 19.查找字符的位置 ... -
Bash字符串处理(与Java对照) - 18.格式化字符串
2011-10-17 09:18 5007Bash字符串处理(与Java对照) - 18.格式化字符串 ... -
Bash字符串处理(与Java对照) - 17.判断是否以另外的字符串结尾
2011-10-09 08:58 6996Bash字符串处理(与Java对照) - 17.判断是否以另外 ... -
Bash字符串处理(与Java对照) - 16.判断是否以另外的字符串开头
2011-10-08 09:17 8410Bash字符串处理(与Java对照) - 16.判断是否以另外 ... -
Bash字符串处理(与Java对照) - 15.计算子串出现的次数
2011-09-28 09:37 3428Bash字符串处理(与Java对照) - 15.计算子串出现的 ... -
Bash字符串处理(与Java对照) - 14.判断是否包含另外的字符串(多达6种方法)
2011-09-27 13:22 8344Bash字符串处理(与Java对照) - 14.判断是否包含另 ... -
Bash字符串处理(与Java对照) - 13.字符串数组连接(以指定分隔符合并)
2011-09-26 09:19 5196Bash字符串处理(与Java对照) - 13.字符串数组连接 ... -
Bash字符串处理(与Java对照) - 12.字符串连接
2011-09-23 09:08 6368Bash字符串处理(与Java对照) - 12.字符串连接 ... -
Bash字符串处理(与Java对照) - 11.比较两个字符串大小(字典顺序、数值比较)
2011-09-21 09:31 5731Bash字符串处理(与Java对照) - 11.比较两个字符串 ... -
Bash字符串处理(与Java对照) - 10.判断两个字符串是否相等(不等)
2011-09-20 09:16 6925Bash字符串处理(与Java对照) - 10.判断两个字符串 ... -
Bash字符串处理(与Java对照) - 9.获取字符串指定位置的字符、遍历字符串中的字符
2011-09-19 09:13 3750Bash字符串处理(与Java对照) - 9.获取字符串指定位 ... -
Bash字符串处理(与Java对照) - 8.计算字符串长度
2011-09-16 09:20 5685Bash字符串处理(与Java对照) - 8.计算字符串长度 ... -
Bash字符串处理(与Java对照) - 7.字符串与默认值
2011-09-15 09:20 3969Bash字符串处理(与Java对照) - 7.字符串与默认值 ... -
Bash字符串处理(与Java对照) - 6.判断字符串是否为空(不为空)
2011-09-14 09:20 7226Bash字符串处理(与Java对照) - 6.判断字符串是否为 ... -
Bash字符串处理(与Java对照) - 4.字符串输出
2011-09-08 09:30 3757Bash字符串处理(与Java对照) - 4.字符串输出 I ... -
Bash字符串处理(与Java对照) - 3.给(字符串)变量赋值
2011-09-07 09:29 6895Bash字符串处理(与Java ... -
Bash字符串处理(与Java对照) - 2.字符串的表示方式(字符串常量)
2011-09-06 09:18 6152Bash字符串处理(与Java ...
相关推荐
在上述命令中,`--connect`参数指定了MySQL的JDBC连接字符串,而Sqoop会自动使用MySQL Connector/J执行数据迁移。 综上所述,MySQL Connector/J 8.0.13是Java开发者与MySQL数据库交互的关键组件,它为Java应用程序...
9. **用户代理伪装**:`--user-agent=字符串`可以改变发出请求的用户代理标识。 10. **证书验证**:对于HTTPS,可以使用`--ca-certificate`指定自定义CA证书,`--no-check-certificate`禁用证书检查。 `wget`的...
为了解决这个问题,我们可以使用一个名为rlwrap的工具,它是一个命令行读取增强程序,可以为不支持命令历史和补全的程序添加这些功能。 rlwrap(ReadLine Wrapper)是一个小型实用程序,它可以将GNU ReadLine库的...
9.2. 操作字符串 9.3. 参数替换 9.4. 指定类型的变量:declare 或者typeset 9.5. 变量的间接引用 9.6. $RANDOM: 产生随机整数 9.7. 双圆括号结构 10. 循环和分支 10.1. 循环 10.2. 嵌套循环 10.3. 循环控制 10.4. ...
使用模式匹配来分析比较特殊的字符串 9-20. 对字符串的前缀或后缀使用匹配模式 9-21. 使用declare来指定变量的类型 9-22. 间接引用 9-23. 传递一个间接引用给awk 9-24. 产生随机数 9-25. 从一副扑克牌中取出一张...
rocommunity public # 公共读取社区字符串 syslocation YourLocationHere # 设备位置 syscontact YourContactInfo # 联系人信息 agentAddress udp:127.0.0.1:161 # 监听地址和端口 ``` 五、启动和管理SNMP服务 在...
- **解析YAML**:能够读取YAML格式的文件或字符串,将其转换为Python的数据结构,如字典、列表、字符串、数字等。 - **序列化Python对象**:可以将Python的数据结构转化为YAML字符串,方便存储或传输。 - **安全解析...
这个结构体可以解析或构建包含Pascal风格字符串的姓名、8位无符号整数的年龄和16位无符号整数的高度的数据。 安装`construct_hub-0.1.136-py3-none-any.whl`库非常简单,只需要通过Python的包管理器pip执行以下命令...
5. **验证与约束**:可以设置配置项的验证规则,确保输入的配置符合预期。 安装configuration_resolver库非常简单,只需通过Python的pip工具,使用以下命令即可: ```bash pip install configuration_resolver-0.0...
2. **命令替换**:通过反引号 ` 或 $( ) 将命令的输出作为字符串使用。 3. **重定向**:>``, `>>`, `分别用于覆盖输出、追加输出和读取输入。 4. **条件表达式**:用于 if 语句,如 `[ expression ]` 或 `[[ ...
1. **数据类型**:Redis支持五种基本数据类型:字符串(Strings)、哈希(Hashes)、列表(Lists)、集合(Sets)和有序集合(Sorted Sets),这些类型使得Redis可以灵活地处理各种数据结构需求。 2. **持久化**:Redis提供了...
它支持多种数据结构,如字符串、哈希、列表、集合、有序集合等,具有高性能、低延迟的特点,常用于缓存和实时数据存储。 **数据库缓存**:在Django中,缓存系统用于存储频繁访问的数据,以减少对数据库的查询,提高...
词法分析器是编译器或解释器的第一步,它将源代码分解成一系列有意义的符号或标记,这些符号通常对应于编程语言的保留字、标识符、数字、字符串等。Flex通过读取用户定义的规则,自动生成词法分析器的C代码,然后...
# 将GeoJSON对象转换为字符串 geojson_str = polygon.to_dict() # 解析GeoJSON字符串 parsed_polygon = Polygon.from_dict(json.loads(geojson_str)) ``` **在后端开发中的应用** 在Python后端开发中,GeoJSON库...
在Bash脚本中,可以使用多种方法对字符串进行处理,包括拼接、分割、替换等。 ##### 3.1 字符串拼接 可以通过简单地将字符串放在一起实现拼接: ```bash str1="hello" str2="world" echo "$str1 $str2" ``` #####...
SSM Parameter Store支持多种数据类型,包括字符串、字符串列表和JSON,且具有版本控制和加密功能。 **cdk_ssm_parameter_store Python库** "cdk_ssm_parameter_store" 是一个针对AWS CDK的扩展库,它为AWS Cloud ...
3. **渲染和转换**:将处理过的维基文本对象重新渲染成字符串,可以方便地进行格式化和转换。 4. **错误处理**:库提供了良好的错误处理机制,能捕获并处理解析过程中的异常,确保程序的稳定运行。 5. **兼容性**...
在Java编程语言中,文本字符串替换是一个常见的任务,特别是在处理大量文本数据时。这个"java 文本字符串替换工具"很可能是为了帮助开发者高效地搜索和替换文件中的特定文本内容。让我们详细了解一下如何在Java中...
例如,`Byte`构造函数用于处理单个字节,`Int16ul`用于处理无符号的16位整数,而`String`则用于处理字符串。通过这些构造函数,你可以构建出复杂的解析器和序列化器,定义自己的数据格式。 例如,如果我们需要解析...
"py3-none-any" 这一串字符是PEP 425兼容性标识符,它告诉我们这个软件包是为Python 3编译的,适用于任何架构(none)和平台(any)。".whl" 是Python的 Wheels 文件格式,它是预编译的Python包,使得安装过程更为...