package com.ljn.base;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.commons.io.IOUtils;
import org.joda.time.DateTime;
import org.joda.time.format.DateTimeFormat;
import org.joda.time.format.DateTimeFormatter;
/**
《代码大全》-表驱动法-消息打印
问题描述:
Suppose you’re writing a routine to print messages that are stored in a file. The file
usually has about 500 messages, and each file has about 20 kinds of messages. The
messages originally come from a buoy and give water temperature, the buoy’s location, and so on.
Each of the messages has several fields, and each message starts with a header that has
an ID to let you know which of the 20 or sokinds of messages you’re dealing with.
书上对于这个问题的解法,我看得不是很明白,动手写了一下,就有了以下代码,基本达到目的:
*/
public class TableDriven2 {
private static final Map<String, Message> messageMap;
/**
* 正如书上所说,“消息表”可以硬编码到程序中;也可以定义在配置文件里,程序初始化时读取
* 定义在配置文件的优点是,消息格式变动时,不需要改动java代码;缺点是要解析配置文件
* 这里简单起见,只定义三种消息,且硬编码到程序中
*/
static {
messageMap = new HashMap<String, Message>();
Message temperature = new Message("001", "Temperature Message");
temperature.addField(new FloatField("Average Temperature"));
temperature.addField(new IntegerField("Number of Samples"));
temperature.addField(new StringField("Location"));
temperature.addField(new DayField("Time of Measurement"));
messageMap.put(temperature.getId(), temperature);
Message drift = new Message("002", "Drift Message");
drift.addField(new FloatField("Change in Latitude"));
drift.addField(new FloatField("Change in Longtitude"));
drift.addField(new DayField("Time of Measurement"));
messageMap.put("002", drift);
Message location = new Message("003", "Location Message");
location.addField(new FloatField("Latitude"));
location.addField(new FloatField("Longtitude"));
location.addField(new IntegerField("Depth"));
location.addField(new DayField("Time of Measurement"));
messageMap.put(location.getId(), location);
}
//示例代码。实际开发中,还应该考虑很多细节,例如每行前后的空格要去掉,要检查每行的数据是否合法,等等
public static void main(String[] args){
FileInputStream fs = null;
try {
fs = new FileInputStream("C:/Users/lijinnan/Desktop/message.txt");
BufferedReader br = new BufferedReader(new InputStreamReader(fs));
String line = null;
boolean messageBegin = true;
Message message = null;
int fieldIndex = 0;
while ((line = br.readLine()) != null) {
if (messageBegin) {
String messageId = line;
message = messageMap.get(messageId);
System.out.println("#" + message.getName() + "#");
messageBegin = false;
continue;
}
if (message != null && message.getFields() != null) {
if (fieldIndex < message.getFields().size()) {
Field curField = message.getFields().get(fieldIndex++);
curField.readAndPrint(line);
}
if (fieldIndex == message.getFields().size()) {
messageBegin = true;
fieldIndex = 0;
System.out.println();
}
}
}
} catch (Exception e) {
//ignore for test
} finally {
IOUtils.closeQuietly(fs);
}
}
}
/*
定义消息字段的类型
只定义四种:FloatField IntegerField StringField DayField
当然这四种类型也可以定义为enum
*/
abstract class Field {
private String label;
public abstract void readAndPrint(String value);
public Field(String label) {
this.label = label;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
}
class FloatField extends Field {
public FloatField(String label) {
super(label);
}
/**
* 假设浮点数输出的格式是保留两位小数点
*/
@Override
public void readAndPrint(String value) {
float val = Float.parseFloat(value);
String formattedValue = String.format("%.2f", val);
System.out.println(getLabel() + ":" + formattedValue);
}
}
class IntegerField extends Field {
public IntegerField(String label) {
super(label);
}
/**
* 假设整数的输出格式为原样输出
*/
@Override
public void readAndPrint(String value) {
System.out.println(getLabel() + ":" + value);
}
}
class StringField extends Field {
public StringField(String label) {
super(label);
}
/**
* 假设字符串的输出格式为原样输出
*/
@Override
public void readAndPrint(String value) {
System.out.println(getLabel() + ":" + value);
}
}
class DayField extends Field {
public DayField(String label) {
super(label);
}
/**
* 假设时间的输入格式是dd/MM/yyyy HH:mm:ss
* 输出格式是yyyy-MM-dd
* 时间的处理用到了joda-time
*/
@Override
public void readAndPrint(String value) {
DateTimeFormatter formatter = DateTimeFormat.forPattern("dd/MM/yyyy HH:mm:ss");
DateTime dt = formatter.parseDateTime(value);
System.out.println(getLabel() + ":" + dt.toString("yyyy-MM-dd"));
}
}
class Message {
private String id; //消息ID
private String name; //消息名
private List<Field> fields; //消息字段
public Message(String id, String name) {
this.id = id;
this.name = name;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<Field> getFields() {
return Collections.unmodifiableList(fields);
}
public void addField(Field field) {
if (fields == null) {
fields = new ArrayList<Field>();
}
fields.add(field);
}
}
/*
测试数据,message.txt的内容:
001
1.111
11
East 111
01/01/2011 11:11:11
001
1.010
10
West 001
11/11/2011 11:11:11
002
2.0
2.1
02/02/2012 22:22:22
003
3.0
3.123
3000
03/03/2013 23:33:33
002
22.0
22.1
22/02/2012 22:22:22
003
30.0
30.123
3000
13/03/2013 23:33:33
程序输出:
#Temperature Message#
Average Temperature:1.11
Number of Samples:11
Location:East 111
Time of Measurement:2011-01-01
#Temperature Message#
Average Temperature:1.01
Number of Samples:10
Location:West 001
Time of Measurement:2011-11-11
#Drift Message#
Change in Latitude:2.00
Change in Longtitude:2.10
Time of Measurement:2012-02-02
#Location Message#
Latitude:3.00
Longtitude:3.12
Depth:3000
Time of Measurement:2013-03-03
#Drift Message#
Change in Latitude:22.00
Change in Longtitude:22.10
Time of Measurement:2012-02-22
#Location Message#
Latitude:30.00
Longtitude:30.12
Depth:3000
Time of Measurement:2013-03-13
*/
分享到:
相关推荐
表驱动法(Table-Driven Approach)可以通过在表中查找信息,来代替很多复杂的 if-else 或者 switch-case 逻辑判断。 嵌入式系统开发 C 语言编程代码结构优化对于嵌入式系统开发非常重要,可以提高系统的性能和...
- **使用匿名内部类的表驱动代码 (Table-Driven Code Using Anonymous Inner Classes)** - 如何利用匿名内部类来实现表驱动代码。 ##### 9. **解释器/多种语言 (Interpreter/Multiple Languages)** - **解释器...
linux基础进阶笔记,配套视频:https://www.bilibili.com/list/474327672?sid=4493093&spm_id_from=333.999.0.0&desc=1
IMG20241115211541.jpg
GEE训练教程——Landsat5、8和Sentinel-2、DEM和各2哦想指数下载
该资源内项目源码是个人的课程设计、毕业设计,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96分,放心下载使用! ## 项目备注 1、该资源内项目代码都经过严格测试运行成功才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。
基于springboot家政预约平台源码数据库文档.zip
Ucharts添加stack和折线图line的混合图
基于springboot员工在线餐饮管理系统源码数据库文档.zip
新能源汽车进出口数据 1、时间跨度:2018-2020年 2、指标说明:包含如下指标的进出口数据:混合动力客车(10座及以上)、纯电动客车(10座及以上)、非插电式混合动力乘用车、插电式混合动力乘用车、纯电动乘用车 二、新能源汽车进出口月销售数据(分地区、分类型、分 级别) 1、数据来源:见资料内说明 2、时间跨度:2014年1月-2021年5月 4、指标说明: 包含如下指标 2015年1月-2021年5月新能源乘用车终端月度销量(分类型)部分内容如下: 新能源乘用车(单月值、累计值 )、插电式混合动力 月度销量合计(狭义乘用车轿车、SUV、MPV、交叉型乘用车); 月度销量同比增速(狭义乘用车轿车、SUV、MPV、交叉型乘用车); 累计销量合计(狭义乘用车轿车、SUV、IPV、交叉型乘用车); 累计销量同比增速(狭义乘用车轿车、SUV、MPV、交叉型乘用车); 累计结构变化(狭义乘用车轿车、SUV、IPV、交叉型乘用车); 2015年1月-2021年5月新能源乘用车终端月度销量(分地区)内容如下: 更多见资源内
中心主题-241121215200.pdf
内容概要:本文档提供了多个蓝奏云下载链接及其对应解压密码,帮助用户快速获取所需文件。 适合人群:需要从蓝奏云下载文件的互联网用户。 使用场景及目标:方便地记录并分享蓝奏云上文件的下载地址和密码,提高下载效率。 阅读建议:直接查看并使用提供的链接和密码即可。若遇到失效情况,请尝试联系上传者确认更新后的链接。
基于Java web 实现的仓库管理系统源码,适用于初学者了解Java web的开发过程以及仓库管理系统的实现。
资源名称:Python-文件重命名-自定义添加文字-重命名 类型:windows—exe可执行工具 环境:Windows10或以上系统 功能: 1、点击按钮 "源原文"【浏览】表示:选择重命名的文件夹 2、点击按钮 "保存文件夹"【浏览】表示:保存的路径(为了方便可选择保存在 源文件中 ) 3、功能①:在【头部】添加自定义文字 4、功能②:在【尾部】添加自定义文字 5、功能③:输入源字符 ;输入替换字符 可以将源文件中的字符替换自定义的 6、功能④:自动加上编号_1 _2 _3 优点: 1、非常快的速度! 2、已打包—双击即用!无需安装! 3、自带GUI界面方便使用!
JDK8安装包
配合作者 一同使用 作者地址没有次下载路径 https://blog.csdn.net/weixin_52372189/article/details/127471149?fromshare=blogdetail&sharetype=blogdetail&sharerId=127471149&sharerefer=PC&sharesource=weixin_45375332&sharefrom=from_link
GEE训练教程
该资源内项目源码是个人的课程设计、毕业设计,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96分,放心下载使用! ## 项目备注 1、该资源内项目代码都经过严格测试运行成功才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。