Apache Commons IO - IOCase
การแจกแจงความไวของตัวพิมพ์ IO ระบบปฏิบัติการที่แตกต่างกันมีกฎที่แตกต่างกันสำหรับกรณีไวสำหรับชื่อไฟล์ ตัวอย่างเช่น Windows ไม่คำนึงถึงตัวพิมพ์เล็กและใหญ่สำหรับการตั้งชื่อไฟล์ในขณะที่ Unix นั้นคำนึงถึงตัวพิมพ์เล็กและใหญ่ IOCase จับความแตกต่างดังกล่าวจัดเตรียมการแจงนับเพื่อควบคุมวิธีการเปรียบเทียบชื่อไฟล์ที่ควรดำเนินการ นอกจากนี้ยังมีวิธีการใช้การแจงนับเพื่อทำการเปรียบเทียบ
ประกาศ Enum
ต่อไปนี้เป็นคำประกาศสำหรับ org.apache.commons.io.IOCase Enum -
public enum IOCase
extends Enum<IOCase> implements Serializable
ตัวอย่าง IOCase Enum
ตัวอย่างของ IOCase Enum แสดงไว้ด้านล่าง -
IOTester.java
import java.io.IOException;
import org.apache.commons.io.IOCase;
public class IOTester {
public static void main(String[] args) {
try {
usingIOCase();
} catch(IOException e) {
System.out.println(e.getMessage());
}
}
public static void usingIOCase() throws IOException {
String text = "Welcome to TutorialsPoint. Simply Easy Learning.";
String text1 = "WELCOME TO TUTORIALSPOINT. SIMPLY EASY LEARNING.";
System.out.println("Ends with Learning (case sensitive): " + IOCase.SENSITIVE.checkEndsWith(text1, "Learning."));
System.out.println("Ends with Learning (case insensitive): " + IOCase.INSENSITIVE.checkEndsWith(text1, "Learning."));
System.out.println("Equality Check (case sensitive): " + IOCase.SENSITIVE.checkEquals(text, text1));
System.out.println("Equality Check (case insensitive): " + IOCase.INSENSITIVE.checkEquals(text, text1));
}
}
เอาต์พุต
มันจะพิมพ์ผลลัพธ์ต่อไปนี้ -
Ends with Learning (case sensitive): false
Ends with Learning (case insensitive): true
Equality Check (case sensitive): false
Equality Check (case insensitive): true