Coder Social home page Coder Social logo

localesensitivesort's Introduction

Locale Sensitive String Sort

When you sort students enrolled in a course by name using our online services for on-campus students, anasis, you see that names starting with ö, ç, and ş are listed after the letter Z. So apparently there is something wrong here.

Inspired by this, write a Java application called Sort.java that sorts lines in a file. To sort the data in a file named friends.txt, a user would enter:

java Sort friends.txt tr-TR

When an application is launched, the runtime system passes the command-line arguments to the application's main method via an array of Strings. In the example, the command-line arguments passed to the Sort application in an array that contains two Strings: "friends.txt" and "tr-TR."

The first argument is the file, while the second one is the Locale. In the repository you can find "friends.txt," which contains 111 student names enrolled in the BIM207 Computer Programming III course. Output of the program will be a file named "sorted.txt."

To compile your source file, please use javac. Make some research on the internet regarding locale sensitive sorting.

After completing this assignment students should be able to:

  • Be aware of locale sensitive operations
  • Will be able to sort Turkish names correctly
  • Work with command-line arguments
  • Use the Locale.forLanguageTag(String) factory method, which was introduced in the Java SE 7 release.

localesensitivesort's People

Contributors

iorixxx avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.