ユーザーが追加しているいくつかの URL のサフィックスを格納するこの配列があります。
[U2, U3, U1, U5, U8, U4, U7, U6]
私がこれを行うとき:
for (Map<String, String> map : getUrlAttachments()) {
String tmpId = map.get("id"); //it receives the U2, in the 1st iteration, then U3, then U1,...
if (tmpId.charAt(0) == 'U') {
tmpId.charAt(1);//2, then 3, then 1,...
String url = map.get("url");
String description = map.get("description");
URLAttachment attachment;
String cleanup = map.get("cleanup");
if (cleanup == null && url != null && description != null) {
attachment = new URLAttachmentImpl();
attachment.setOwnerClass(FileUploadOwnerClass.Event.toString());
attachment.setUrl(url);
attachment.setDescription(description);
attachment.setOwnerId(auctionHeaderID);
attachment.setUrlAttachmentType(URLAttachmentTypeEnum.EVENT_ATTACHMENT);
attachment.setDateAdded(new Date());
urlBPO.save(attachment);
}
私の問題:
For
のようにソートされたデータをマッピングする別のリストを渡すことで、この条件を変更したいと思い[U1, U2, U3, U4, U5, U6, U7, U8]
ます。
これを行う最善の方法を教えてください。
IDをリストした配列を作成してから並べ替えることを考えましたが、Javaで英数字の文字列を正確に並べ替える方法がわかりません。