Search:

Type: Posts; User: kajasweb

Search: Search took 0.09 seconds.

  1. Re: how can i compress a video file for example an avi file in java?

    Java provides standard Zip and GZip Outputstream using which you can compress the files. Or, you can go for 3rd Party libraries like Apache Commons Compress.
  2. Replies
    1
    Views
    1,177

    Re: Architecture to be followed

    SOA is best; as you can try running maximum/all services in a single system when the load is minimal or average; and can cluster & scale up when the load increases.
  3. Replies
    2
    Views
    1,425

    Re: Design a Dictionary

    Simple Map<String, List<String>> is enough.

    Word 1 => [ Meaning 1, Meaning 2, ... ]
    Word 2 => [ Meaning 1, Meaning 2, ... ]
Results 1 to 3 of 3