JArgs命令行选项解析->Java套件

本文涉及的产品
全局流量管理 GTM,标准版 1个月
云解析 DNS,旗舰版 1个月
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
简介: 项目简介和意图 这个小的工程是为java开发者提供的,使用命令行方便的,结构紧凑的解析器工具。   public class OptionTest { private static void printUsage() { System.

项目简介和意图

这个小的工程是为java开发者提供的,使用命令行方便的,结构紧凑的解析器工具。

 

public class OptionTest {
	private static void printUsage() {
		System.err
				.println("Usage: OptionTest [-d,--debug] [{-v,--verbose}] [{--alt}] [{--name} a_name]\n"
						+ "                  [{-s,--size} a_number] [{-f,--fraction} a_float] [a_nother]");
	}

	public static void main(String[] args) {
		// First, you must create a CmdLineParser, and add to it the
		// appropriate Options.
		// To start with, we add the Options -d, -v, -s, and -f, with aliases
		// --debug, --verbose, --size, and --fraction respectively.
		// The -d and -v options have no associated value -- they are either
		// present, or they are not. The -s and -f options take integer and
		// double-precision floating-point values respectively.
		CmdLineParser parser = new CmdLineParser();
		CmdLineParser.Option debug = parser.addBooleanOption('d', "debug");
		CmdLineParser.Option verbose = parser.addBooleanOption('v', "verbose");
		CmdLineParser.Option size = parser.addIntegerOption('s', "size");
		CmdLineParser.Option fraction = parser.addDoubleOption('f', "fraction");

		// Options may have just a long form with no corresponding short form.
		// Here, we add --alt and --name options.
		CmdLineParser.Option alt = parser.addBooleanOption("alt");
		CmdLineParser.Option name = parser.addStringOption('n', "name");

		// Next, you must parse the user-provided command line arguments, and
		// catch any errors therein.
		// Options may appear on the command line in any order, and may even
		// appear after some or all of the non-option arguments.
		// If the user needs to specify non-option arguments that start with a
		// minus, then they may indicate the end of the parsable options with
		// -- , like this:
		// prog -f 20 -- -10 -fred
		// The -f 20 will be parsed as the fraction option, with the value 20.
		// The -10 and -fred arguments will be regarded as non-option
		// arguments, and passed through getRemainingArgs as unparsed Strings.
		// Short boolean options may be specified separately (-d -v) or
		// together (-dv).
		// Options with values may be given on the command line as -f 1.0 or
		// --fraction=1.0.
		try {
			parser.parse(args);
		} catch (CmdLineParser.OptionException e) {
			System.err.println(e.getMessage());
			printUsage();
			System.exit(2);
		}
		// For options that may be specified only zero or one time, the value
		// of that option may be extracted as shown below. If the options
		// were not specified, the corresponding values will be null.

		Boolean debugValue = (Boolean) parser.getOptionValue(debug);
		String nameValue = (String) parser.getOptionValue(name);
		// Alternatively, you may specify a default value. This will be
		// returned (instead of null) when the command line argument is
		// missing.

		Boolean altValue = (Boolean) parser.getOptionValue(alt, Boolean.FALSE);
		Integer sizeValue = (Integer) parser.getOptionValue(size, new Integer(
				42));

		// If your application requires it, options may be specified more than
		// once. In this case, you may get all the values specified by the
		// user, as a Vector:

		Vector fractionValues = parser.getOptionValues(fraction);

		// Alternatively, you may make the loop explicit:

		int verbosity = 0;
		while (true) {
			Boolean verboseValue = (Boolean) parser.getOptionValue(verbose);
			if (verboseValue == null) {
				break;
			} else {
				verbosity++;
			}
		}
		// The remaining command-line arguments -- those that do not start
		// with a minus sign -- can be captured like this:

		String[] otherArgs = parser.getRemainingArgs();

		// For testing purposes, we just print out the option values and
		// remaining command-line arguments. In a real program, of course,
		// one would pass them to a function that does something more useful.

		System.out.println("debug: " + debugValue);
		System.out.println("alt: " + altValue);
		System.out.println("size: " + sizeValue);
		System.out.println("name: " + nameValue);
		System.out.println("verbosity: " + verbosity);
		Enumeration e = fractionValues.elements();
		while (e.hasMoreElements()) {
			System.out.println("fraction: " + (Double) e.nextElement());
		}
		System.out.println("remaining args: ");
		for (int i = 0; i < otherArgs.length; ++i) {
			System.out.println(otherArgs[i]);
		}
		System.exit(0);
	}
}

 使用JArgs的项目有JBoss,Columba等。

 

总结一下就是这是一个java的命令解析的小的工程,可以方便的解析各种输入的参数信息。在YUICompressor项目中应用到了这个小的套件。

 

目录
相关文章
|
2月前
|
存储 缓存 安全
Java内存模型深度解析:从理论到实践####
【10月更文挑战第21天】 本文深入探讨了Java内存模型(JMM)的核心概念与底层机制,通过剖析其设计原理、内存可见性问题及其解决方案,结合具体代码示例,帮助读者构建对JMM的全面理解。不同于传统的摘要概述,我们将直接以故事化手法引入,让读者在轻松的情境中领略JMM的精髓。 ####
50 6
|
2月前
|
监控 算法 Java
Java虚拟机(JVM)的垃圾回收机制深度解析####
本文深入探讨了Java虚拟机(JVM)的垃圾回收机制,旨在揭示其背后的工作原理与优化策略。我们将从垃圾回收的基本概念入手,逐步剖析标记-清除、复制算法、标记-整理等主流垃圾回收算法的原理与实现细节。通过对比不同算法的优缺点及适用场景,为开发者提供优化Java应用性能与内存管理的实践指南。 ####
|
21天前
|
人工智能 自然语言处理 Java
FastExcel:开源的 JAVA 解析 Excel 工具,集成 AI 通过自然语言处理 Excel 文件,完全兼容 EasyExcel
FastExcel 是一款基于 Java 的高性能 Excel 处理工具,专注于优化大规模数据处理,提供简洁易用的 API 和流式操作能力,支持从 EasyExcel 无缝迁移。
96 9
FastExcel:开源的 JAVA 解析 Excel 工具,集成 AI 通过自然语言处理 Excel 文件,完全兼容 EasyExcel
|
1天前
|
存储 Java 计算机视觉
Java二维数组的使用技巧与实例解析
本文详细介绍了Java中二维数组的使用方法
25 15
|
1天前
|
算法 搜索推荐 Java
【潜意识Java】深度解析黑马项目《苍穹外卖》与蓝桥杯算法的结合问题
本文探讨了如何将算法学习与实际项目相结合,以提升编程竞赛中的解题能力。通过《苍穹外卖》项目,介绍了订单配送路径规划(基于动态规划解决旅行商问题)和商品推荐系统(基于贪心算法)。这些实例不仅展示了算法在实际业务中的应用,还帮助读者更好地准备蓝桥杯等编程竞赛。结合具体代码实现和解析,文章详细说明了如何运用算法优化项目功能,提高解决问题的能力。
24 6
|
7天前
|
SQL Java 数据库连接
如何在 Java 代码中使用 JSqlParser 解析复杂的 SQL 语句?
大家好,我是 V 哥。JSqlParser 是一个用于解析 SQL 语句的 Java 库,可将 SQL 解析为 Java 对象树,支持多种 SQL 类型(如 `SELECT`、`INSERT` 等)。它适用于 SQL 分析、修改、生成和验证等场景。通过 Maven 或 Gradle 安装后,可以方便地在 Java 代码中使用。
99 11
|
1天前
|
存储 算法 搜索推荐
【潜意识Java】期末考试可能考的高质量大题及答案解析
Java 期末考试大题整理:设计一个学生信息管理系统,涵盖面向对象编程、集合类、文件操作、异常处理和多线程等知识点。系统功能包括添加、查询、删除、显示所有学生信息、按成绩排序及文件存储。通过本题,考生可以巩固 Java 基础知识并掌握综合应用技能。代码解析详细,适合复习备考。
11 4
|
1天前
|
存储 Java
【潜意识Java】期末考试可能考的选择题(附带答案解析)
本文整理了 Java 期末考试中常见的选择题,涵盖数据类型、控制结构、面向对象编程、集合框架、异常处理、方法、流程控制和字符串等知识点。每道题目附有详细解析,帮助考生巩固基础,加深理解。通过这些练习,考生可以更好地准备考试,掌握 Java 的核心概念和语法。
|
6天前
|
存储 分布式计算 Hadoop
基于Java的Hadoop文件处理系统:高效分布式数据解析与存储
本文介绍了如何借鉴Hadoop的设计思想,使用Java实现其核心功能MapReduce,解决海量数据处理问题。通过类比图书馆管理系统,详细解释了Hadoop的两大组件:HDFS(分布式文件系统)和MapReduce(分布式计算模型)。具体实现了单词统计任务,并扩展支持CSV和JSON格式的数据解析。为了提升性能,引入了Combiner减少中间数据传输,以及自定义Partitioner解决数据倾斜问题。最后总结了Hadoop在大数据处理中的重要性,鼓励Java开发者学习Hadoop以拓展技术边界。
31 7
|
28天前
|
存储 缓存 Java
Java 并发编程——volatile 关键字解析
本文介绍了Java线程中的`volatile`关键字及其与`synchronized`锁的区别。`volatile`保证了变量的可见性和一定的有序性,但不能保证原子性。它通过内存屏障实现,避免指令重排序,确保线程间数据一致。相比`synchronized`,`volatile`性能更优,适用于简单状态标记和某些特定场景,如单例模式中的双重检查锁定。文中还解释了Java内存模型的基本概念,包括主内存、工作内存及并发编程中的原子性、可见性和有序性。
Java 并发编程——volatile 关键字解析

热门文章

最新文章

推荐镜像

更多