Tips

Java apache commons SerializationUtils サンプルプログラム

Java apache commons SerializationUtils サンプルプログラム

SerializationUtilsの説明(google翻訳)

シリアライゼーションプロセスを支援し、シリアライゼーションに基づいて追加の機能を実行します。
・シリアライゼーションを使った深いクローン
・最終的な管理とIOExceptionの直列化
・最終的にはdeserializeとIOExceptionを管理する
このクラスは、無効なNULL入力に対して例外をスローします。各メソッドは、その動作をより詳細に記録します。

シリアライズ、デシリアライズの操作クラスです。
javaはネットワークもファイルもストリームで操作します。今回はファイルに対して出力、ファイルから入力のパターンのサンプルを作成しようと思います。

SerializationUtils

ItemOrder

package jp.pjin.tech.java.domain;

import java.io.Serializable;

public class ItemOrder implements Serializable {
	private static final long serialVersionUID = 1L;

	private int id;
	private String client;
	private String item;
	private int price;
	private int order;
	private int amount;

	public ItemOrder(int id, String client, String item, int price, int order) {
		this.id = id;
		this.client = client;
		this.item = item;
		this.price = price;
		this.order = order;
		this.amount = price * order;
	}

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public String getClient() {
		return client;
	}

	public void setClient(String client) {
		this.client = client;
	}

	public String getItem() {
		return item;
	}

	public void setItem(String item) {
		this.item = item;
	}

	public int getPrice() {
		return price;
	}

	public void setPrice(int price) {
		this.price = price;
	}

	public int getOrder() {
		return order;
	}

	public void setOrder(int order) {
		this.order = order;
	}

	public int getAmount() {
		return amount;
	}

	public void setAmount(int amount) {
		this.amount = amount;
	}

}

mainプログラム

package jp.pjin.tech.java;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.Serializable;
import java.util.Arrays;
import java.util.List;

import jp.pjin.tech.java.domain.ItemOrder;

import org.apache.commons.lang3.SerializationUtils;
import org.apache.commons.lang3.builder.ToStringBuilder;

public class CommonsExample8 {
	public static void main(String[] args) throws Exception {
		List<ItemOrder> orders = Arrays.asList(
			new ItemOrder(1, "A商社", "ガム", 30, 3000),
			new ItemOrder(2, "B商社", "チョコ", 40, 6000),
			new ItemOrder(3, "B商社", "バナナ", 60, 8000),
			new ItemOrder(4, "C商社", "麩菓子", 10, 8000)
		);
		File file = new File("orders.ser");
		if (!file.exists()) {
			file.createNewFile();
		}
		/* 出力 */
		BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(file));
		SerializationUtils.serialize((Serializable) orders, bos);
		bos.close();

		/* 入力 */
		BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file));
		orders = SerializationUtils.deserialize(bis);
		bis.close();

		orders.forEach(order -> {
			System.out.println(ToStringBuilder.reflectionToString(order));
		});

	}
}

出力はorders.serというファイルを実行している場所に出力します。
elipseの場合は、ワークスペースのプロジェクト名直下に出力されます。

シリアライズされているので、ファイルを開いてもわけがわからないと思います。
ファイルに出力したくないフィールがあれば、transient修飾子をつければ出力されません。
今回はすべてのフィールドの値を出力しました。

java apache commons

Java apache commons StrSubstitutor サンプルプログラム

StrSubstitutorの説明(google翻訳) 文字列内の変数を値で置き換えます。 このクラスはテキストを取り込み、その中のすべての変数を代入します。変数のデフォルト定義は$ {variableName}です。プレフィックスと接尾辞はコンストラクタとメソッドを使って変更できます。 変数値は、
java apache commons

Java apache commons StrMatcher サンプルプログラム

StrMatcherの説明(google翻訳) 文字配列部分が一致するかどうかを調べるために照会できるmatcherクラス。 このクラスには、さまざまなファクトリメソッドが用意されています。これらが十分でない場合は、独自のマッチャーをサブクラス化して実装できます。 シングルクォートやダブルクォート、
java apache commons

Java apache commons StrLookup サンプルプログラム

StrLookupの説明(google翻訳) 文字列キーを文字列値にルックアップします。 このクラスは、最も簡単な形式の文字列から文字列へのマップを表します。それは、キーに基づいてオンデマンドで結果を作成できるという点で、マップよりも利点があります。 このクラスには、さまざまなファクトリメソッドが用
java apache commons

Java apache commons StrBuilder サンプルプログラム

StrBuilderの説明(google翻訳) StringBufferよりも柔軟で強力なAPIを提供する構成部分から文字列を作成します。 StringBuffer / StringBuilderとの主な相違点は次のとおりです。 同期されていない 最終的ではない サブクラスは文字配列に直接アクセスで
java apache commons

Java apache commons ExtendedMessageFormat サンプルプログラム

ExtendedMessageFormatの説明(google翻訳) java.text.MessageFormatを拡張し、埋め込みフォーマット要素のプラグイン可能/追加の書式設定オプションを許可します。クライアントコードは、String形式名に関連付けられたFormatFactoryインスタンス
java apache commons

Java apache commons MethodUtils サンプルプログラム

MethodUtilsの説明(google翻訳) もともとコモンズBeanUtilsのメソッドに焦点を当てたユーティリティリフレクションメソッド。 BeanUtilsのバージョンとの違いは、特にLang内にすでに存在する機能が類似している場合には、注意が必要です。 既知の制限事項 デフォルトアクセス
java apache commons

Java apache commons InheritanceUtils サンプルプログラム

InheritanceUtilsの説明(google翻訳) 継承に焦点を当てたユーティリティメソッド。 継承階層を取得するためのユーティリティーです。 インターフェースは含まれず、extendsされているものだけの階層数を返すメソッドのみがあります。 継承関係がなければ、-1を返します。 Inher
java apache commons

Java apache commons FieldUtils サンプルプログラム

FieldUtilsの説明(google翻訳) リフレクションによるフィールドとの作業のためのユーティリティ。休止状態のCommonsサンドボックスコンポーネントから適応され、リファクタリングされました。 プログラマーによってコード化された有効範囲制限を解除する機能が提供されています。これにより、フ
java apache commons

Java apache commons ConstructorUtils サンプルプログラム

ConstructorUtilsの説明(google翻訳) MethodUtilsの後にモデル化されたコンストラクタに焦点を当てたユーティリティリフレクションメソッド。 既知の制限事項 デフォルトアクセススーパークラスでのパブリックコンストラクタへのアクセス デフォルトのアクセススーパークラスに含ま
java apache commons

Java apache commons ToStringBuilder サンプルプログラム

ToStringBuilderの説明(google翻訳) Object.toString()メソッドの実装を支援します。 このクラスを使用すると、任意のクラスまたはオブジェクトに対して良好で一貫したtoString()を構築できます。このクラスは、次の方法でプロセスを簡素化することを目的としています

新連載はじまりました!新Java基礎 連載リンク

はじめてのJAVA 連載

Recent News

Recent Tips

Tag Search