• Struts

Multiple message resource property file in Struts

Recently I came up with a requirement where in we have to display messages from multiple bundle resource (message resource)…

15 years ago
  • Database
  • MySQL

MySQL Change root Password

Setting up mysql password is one of the essential tasks. root user is MySQL admin account. Please note that Linux…

15 years ago
  • Java

Files-Directory listing in Java

This example lists the files and subdirectories in a directory. [code="java"] File dir = new File("directoryName"); String[] children = dir.list();…

15 years ago
  • Struts

Struts Internationalization (I18N)

Problem Statement: We require to achieve internationalization using Struts 1.x We have a layout setup for our application as header…

15 years ago
  • Java

UnsupportedOperationException while removing or adding elements from List

Problem statement: While running following code, UnsupportedOperationException is thrown both at .add() and .remove() method. What is the problem with…

15 years ago

Conversion of text file in PDF and vice versa in UNIX

Yes, this is also a good solution. All you need is to add: [code='java'] \documentclass[a4paper]{article} \begin{document} .... your original text…

15 years ago
  • AJAX
  • JavaScript

Ajax Style File Uploading using Hidden iFrame

File uploading using AJAX is not possible. AJAX doesn't actually post forms to the server, it sends selected data to…

15 years ago

Installing Windows XP with Vista

I assume Vista is preinstalled. And you want to install XP along with Vista. Now as Vista is preinstalled most…

15 years ago