Sortowanie ciągów alfanumerycznych Java

Mam tablicę przechowującą przyrostek niektórych adresów URL, które dodaje użytkownik:

[U2, U3, U1, U5, U8, U4, U7, U6]

Kiedy to robię:

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);

            }

Mój problem:

Chcę to zmienićFor warunek, przekazując kolejną listę odwzorowującą posortowane dane[U1, U2, U3, U4, U5, U6, U7, U8].

Chciałbym, żeby twoja pomoc wiedziała, jak najlepiej to zrobić.

Pomyślałem o utworzeniu tablicy z listą identyfikatorów, a następnie sortowałem, ale nie wiem, jak dokładnie sortować ciągi alfanumeryczne w java.

questionAnswers(4)

yourAnswerToTheQuestion