从 IBM i 文件创建 IBM i Java Toolkit RecordFormat
Create a IBM i Java Toolkit RecordFormat from an IBM i File
是否可以仅通过指向具有路径的 System i db 文件来创建 jt400 RecordFormat 对象?
我可以创建 RecordFormat 并添加字段定义,但我只想说 "create a RecordFormat just like that File in that Library"
我在查看 RecordFormat 和 Record 时没有看到类似的东西 类。
查看AS400FileRecordDescription class, specifically the retrieveRecordFormat方法。
AS400FileRecordDescription recordDescription = new AS400FileRecordDescription(
as400, path);
RecordFormat[] formats = recordDescription.retrieveRecordFormat();
是否可以仅通过指向具有路径的 System i db 文件来创建 jt400 RecordFormat 对象?
我可以创建 RecordFormat 并添加字段定义,但我只想说 "create a RecordFormat just like that File in that Library"
我在查看 RecordFormat 和 Record 时没有看到类似的东西 类。
查看AS400FileRecordDescription class, specifically the retrieveRecordFormat方法。
AS400FileRecordDescription recordDescription = new AS400FileRecordDescription(
as400, path);
RecordFormat[] formats = recordDescription.retrieveRecordFormat();