0
votes
0answers
17 views

gettext-commons per-request locale in servlet

The gettext-tutorial states that The preferable way to create an I18n object is through the I18nFactory. The factory caches the I18n object internally using the the package name of the provided ...
-2
votes
1answer
90 views

How do I store input data from JTextField into a String? [closed]

Alright so I'm pretty amateur at programming and my teacher gave me a project where I had to create basically a fast food menu in a GUI interface. To start I had to allow the user to input his/her ...
0
votes
2answers
80 views

JTextField unable to use input in if statement java

I am currently working on and assignment that requires me to create a custom missing fields exception. I have to take in the data from a GUI and make sure that all the fields received input. The ...
1
vote
1answer
108 views

Java - Password Field character counter

I have an assignment question that requires me to create a JPasswordField. Two buttons are needed, one to show the actual password in another textfield, and the other just shows the character count in ...
0
votes
1answer
28 views

text from JSpinner to JTextArea

How can I transfer text from a JSpinner to a JTextArea? I thought about .getText(); but it's not working. dobDate = new JSpinner(new SpinnerDateModel(today, null, null,Calendar.MONTH)); dateEdit = ...
-1
votes
3answers
120 views

Attempting to read user input from jtextfield and display in another jtextfield. Comes up null

I am new to java and I just can't seem to solve this issue. I know I am missing something. Basically what I am attempting to do is read the input from a user in a JTextfield and then display what the ...
0
votes
1answer
56 views

How to add a statement to actionPerformed to call a LinkedList and to store the result in a new variable

How to add a statement to actionPerformed to call mkList and to store the result in a new variable LinkedList aList. public void actionPerformed(ActionEvent event) { if (event.getSource() == ...
1
vote
1answer
126 views

android setText with getString using variable name

So, searching the internet I found many examples that were not what I need... Here is my situation: Imagine that you have a resource that is an array called songs and many 's with each song ...
0
votes
3answers
63 views

How can ActionListener sends the result of the process back to the JTextArea

My question is a bit complicated and as my program is a bit big, I can't put it all here. Anyway, here is the description of the problem: The program has a JTextField, and JTextArea. When the user ...
0
votes
2answers
128 views

textField.getText() can only take Strings, what if I want it to take an int?

I have a problem. I have an UI which contains several textfields in which you are suppose to enter random characters/numbers/letters. String socSecNbr = textFieldCustomerSocSecNbr.getText(); In ...
0
votes
1answer
87 views

How do I make xgettext support i18n Java?

I am trying to extract the strings from a Java project using xgettext with the following line: xgettext --lanaguage=Java C:\workspace\HelloWorldJava\src\com\Dummy.java and I get the following ...
0
votes
1answer
25 views

Testing android:text produces different results depending if it has been modified

I'm experiencing this on my code and I cannot figure out why. Basically I'm setting android:text to "0" on XML and when checking with getText if it's "0" it returns false. If I set it to 0 with ...
0
votes
0answers
129 views

entering data into a class JTextfield and sending it another classes JTextfield

I am creating a tabbed pane program and i am stuck on sending data from one class to another. They are two different JTextFields and i want to be able to enter a number and bring it to the next ...
0
votes
2answers
249 views

Cannot get text from JTextPane

So I have a JTextPane, and I have a method that returns a String containing the text in the JTextPane. I have been trying to fix this for weeks. The getText() method returns a blank line. I tried ...
1
vote
1answer
739 views

The method getText() is undefined for the type EditText — How?

Yes, I'm totally new to this platform, but getText() IS a method of EditText, is it not? I just copied and pasted the exact error from my simple app, which I copied word-for-word from a web tutorial. ...
0
votes
2answers
499 views

how to get the text from a text field to a variable?

i want to get the value from the txt field val1 and val2 and store it in the variables n1 and n2. then n1 and n2 will be parsed to get the value for the calculator. here is the code: public class ...
1
vote
0answers
101 views

JAVA gettext commons

I've been trying to get internationalization to work in JAVA (needs to support plurals). I have a POT file, and from that I've generated a PO file, and I have even managed to compile the JAVA class ...
1
vote
1answer
194 views

JTextField getText() is stuck after init()

This used to be homework but now it's personal as the term is over and I'm still working on learning Swing components. This program is my attempt to lift a procedural console TicTacToe implementation ...
0
votes
4answers
94 views

How to access a JButton based on button text

I have a set of buttons arranged in GridLayout. I want to access a particular button based on its text. Is there any way to retrieve a button based on its text?
2
votes
3answers
320 views

How to mark string message in bean validation annotation for xgettext?

I am using bean validation and gettext for i18n. How can I mark the message string for translation, so it gets extracted with xgettext? For example @NotNull(message="Please enter a valid string") ...
0
votes
1answer
1k views

getText() in WebDriver using Java

The following is the HTML code: <div id="TITLE" class="text"> <label for="widget_polarisCommunityInput_113_title">Title</label> <input type="text" name="field(TITLE)" ...
1
vote
2answers
412 views

ant - uptodate task : regenerate only outdated files

I'm new to ant and rather used to Makefiles. In a project, the i18n language modules named Message_zh.class etc are built unconditionally from zh.po etc with every compile, although they already ...
0
votes
1answer
438 views

gettext under Mac OS X Lion for eclipse with maven

I have a Java project in Eclipse which builds with apache maven. The problem is that the project doesn´t compile correcly because of the gettext function missing. So I did some search and ...
0
votes
1answer
104 views

java xgettext extract keys inside quoted text

I use Apache Velocity as template manager, inside HTMLs files I have calls to gettext, like in the following piece of code: <img alt="$i18n.tr("Some Text")" title="$i18n.tr("Some Text")" ...
0
votes
4answers
771 views

Java - Program will not Compile/method getText(double)

My program is suppose to make a GUI that calculates the square root of a number that is entered. I can not figure out why this code will not compile. I keep getting the following error message: ...
0
votes
1answer
238 views

gettext binary MO file creating with Java

I tried creating a utility to parse gettext po file and generate binary mo file. The parser is simple (my co. not use fuzzy, plural, etc. things, just msgid/msgstr), but the generator is not work. ...
3
votes
1answer
625 views

WebDriver getText throws exceptions

Okay, I am completly clueless: I have table on the page where every rows has CSS ID incremented by one. And I am searching the Auction ID in such table and matching it with the Auction I entered ...
0
votes
1answer
263 views

gettext-common example doesn't work

I need to translate my app, so i want to use gettext-common from http://code.google.com/p/gettext-commons I checked out the svn and tried to compile the example: javac -classpath ../java ...
9
votes
6answers
2k views

Is there a Java library for parsing gettext PO files?

Does anyone know of a Java library that will let me parse .PO files? I simply want to create a Map of IDs and Values so I can load them into a database.
4
votes
2answers
535 views

Is there a good alternative to gettext _() method in Java?

It is a common way to decouple text messages and source code in C/Python/PHP/etc by means of gettext set of utilities. I'm trying to do something similar in my Java project, according to this ...
1
vote
1answer
2k views

ResourceBundles outside a jar file

I'm facing a problem when I need to distribute my java application, created using NetBeans 6.8. I have some translation files made with gettext as class files - made with msgfmt from gettext package ...
6
votes
2answers
3k views

Java and GNU gettext for internationalization

Has anyone had any experiences developing large Java applications using GNU gettext for internationalization? I find that I really like having the English text in my source code, but I want to make ...