0
votes
1answer
24 views

Get year format from a given Date format

I have a localized date format. I want to retrieve just the year format in Java. So if I am given mmddyyyy I would like to extract yyyy. if I am given mmddyy, i would like to extract yy. I cannot ...
0
votes
0answers
6 views

Java XML RPC date iso 8601 with timezone

I am having a hard time trying to make a web service client work. It is a XML RPC specification. I am using Apache WS XML-RPC library, which I find full of holes that causes problem due to ...
0
votes
1answer
21 views

Format (spread) text in DefaultListCellRenderer

I have a list of expences that looks like this : My List I would like the elements of the list to appear as if formatted with \t : PRODUCT NAME PRICE DATE PRODUCT NAME PRICE DATE ...
0
votes
2answers
17 views

Converting Julian date to Java date but still cannot get Month

I am trying to get day ,month and year from a Julian date. String date = "13136";//Julian date Date convertedDate = new SimpleDateFormat("yyDDD").parse(date); ...
0
votes
0answers
32 views

How to format an incoming sms into different parts?

how can i format a paragraph into different parts which is an incoming sms.For example Android 5554 I wan reading a book. So how can i set the first line in the paragraph as a string the next as an ...
0
votes
3answers
45 views

Java Time/Date format

Simple question it's night here and I don't want to wait till morning At 6AM: SimpleDateFormat sdf = new SimpleDateFormat("HH"); Will sdf be 06, or just 6 Thanks.
0
votes
1answer
37 views

How do I check if my input on form is in 0000/0000 format?

I have a JFrame form with 2 text fields, both accept string as input, but one of those strings needs to be entered in format 0000/0000 (eg. 2008/0123), so it needs to have EXACTLY 9 characters. How ...
0
votes
4answers
38 views

Tabular Data Exchange Format

Background: I have used CSV for data exchange format in Asp.Net (C#) web application. The file usually used to do bulk upload for requests. It works fine until now and it still works. However during ...
1
vote
2answers
24 views

Java custom implode methode like in PHP

I am trying to replicate the php function implode() in Java. This is what I made: private String implode(String delimiter, Map<String, String> map){ StringBuilder sb = new StringBuilder(); ...
-1
votes
1answer
53 views

what's the difference between using MMMM and MMMMM to extract the month's name using SimpleDateFormat [closed]

I guess the answer is none. If I use 4 or more "M" the result is the same. public static void main (String[] args) { for (int monthNum = 1; monthNum <= 12; monthNum++) { String ...
-1
votes
0answers
24 views

Customized FormattedTextField within netbeans

First time posting a question over here !! So here's my problem, and by the way, I'm using Netbeans IDE, this is my formatted String, it uses this format (aaa Tu aaaa) As it is, it seems quite simple ...
-6
votes
1answer
26 views

Android Development - Date Formating [closed]

I have a problem in Android Development with Date Formating. I need to format Date like this (dd:mm:yyyy) in Android Development.. How I need to define Date in xml and Java files.? I need a code how ...
0
votes
3answers
43 views

Are escape characters in Java platform-dependent?

I just read this question about comparing "%n" and "\n" What's up with Java's "%n" in printf? The answer confirms that %n can be used across platform, while \n is not. So I wonder ...
0
votes
1answer
23 views

Java UDP data format

I need to send a UDP packet in the following format: [1 OCTET][2 OCTET][3 OCTET][4 OCTET][5 SHORT] For example: 77.125.65.201:27015 Hexadecimal: 4D 7D 41 C9 69 87 This is what I captured ...
1
vote
5answers
65 views

String to hexadecimal

I need a method to convert a string "IP:PORT" into a byte array. I know how to format manually, but I need a way to do it automatically. Example IP: 77.125.65.201:8099 I just can't use ...
0
votes
1answer
56 views

Flags, System.out.format Java

Talking about flags, it's described in the javadoc that the flag ' ' (empty space) will insert automatically an empty space instead of the sign "+" just at the beginning of the number. However when I ...
0
votes
2answers
28 views

Java: is happening automatic wrapping?

Directly from the javadoc: s', 'S' general If the argument arg is null, then the result is "null". If arg implements Formattable, then arg.formatTo is invoked. Otherwise, the result is ...
3
votes
3answers
76 views

System.out.printf vs System.out.format

Are System.out.printf and System.out.format totally the same or perhaps they differ in somehow? Thanks in advance.
2
votes
2answers
36 views

How does “%tB” formatter work?

System.out.format("%tB",12); I should get a "December" out of it, however i get a nice exception Exception in thread "main" java.util.IllegalFormatConversionException: b != java.lang.Integer It ...
0
votes
2answers
54 views

Converting Java Date to Epoch gives wrong result

I am converting java Date object to epoch using code : String str = "" + date; SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd HH:mm:ss.SSS"); Date formateDate = ...
1
vote
3answers
48 views

Is there a nice way to pad an Integer with zeroes without converting it to a String?

I can't think of a better way to left pad an integer with zeroes without first converting it to a String. Is there a way to do this? I've found numerous questions regarding this but they all require a ...
0
votes
1answer
74 views

Localtion of pattern for date formats in java

In java you can get the date format based for a specific locale by doing: Locale locale = new Locale("en", "UK"); DateFormat format = DateFormat.getDateInstance(DateFormat.MEDIUM, locale); ...
0
votes
1answer
39 views

Netbeans Database datetime issue

The error message I'm getting when I compile this is "The syntax of the string representation of a datetime value is incorrect" When the date object is being passed in from the History ArrayList, ...
2
votes
4answers
71 views

String(“2013-4-25”) to date conversion

I have a String like "2013-4-25" I need to convert this into "MM-dd-yyyy" format. Later I will have to append this date like Calendar cal=new GregorianCalendar(); cal.setTime(date); ...
0
votes
1answer
36 views

Formating Numbers without locale

The user can specify a file output format at the GUI. Especially he can define a number format. The first idea was to let him specify a format which can be used with DecimalFormat, but DecimalFormat ...
0
votes
3answers
59 views

How to reformat the time of Java Time class

I searched topics about formatting time but these were all about Date class or DateTime. I am working with Time class. I created time as: Time time = new Time(Time.getCurrentTimezone()) ; ...
1
vote
1answer
66 views

Formatting a given currency for various locales in java? (Rounding issue)

I am trying to format a currency based on the accept-language header, but I'm having a little trouble. An English-US user will understand € 10,000,000.15 but not the suitable-for-Germany ...
0
votes
3answers
72 views

Formatting the output of arrays, into a column

I just needed some assistance on formatting the output into a specific fashion. I satisfied all the requirements of the assignment, except the output. I apologize for the bad format of this post, any ...
0
votes
1answer
50 views

Formatting a number String according to format String

I have a String representing a number (e.g. 1234.56) and a String representing a format (e.g. 1,234.56 or 1 234.56 or 1234,56...) and need to format the number String according to the format String. ...
0
votes
2answers
100 views

Java String Format array

i am trying to format a string as follows System.out.println("unique number is :"+ number[b]); System.out.println("unique number formatted to 28 is :"+ String.format("%-28s",number[b]).replace(' ...
-2
votes
2answers
60 views

Calculating Date in Java

Ok so I am trying to create a date in this format: SimpleDateFormat dateformat = new SimpleDateFormat("dd-MM-yy"); I am having trouble calculating that date so that it gives me 1/1/13. Date ...
-1
votes
4answers
101 views

Java Dates Format

I am having trouble formatting date in java. I have a shopping class that has item name in string, quantity in int and a date in Date. In the run class I am trying to run this query. Date date = ...
0
votes
1answer
23 views

JavaFX HTML formatter

I'm developing an application for creating quizzes. A quiz have more questions. A question look like this: <p>How are you<p> <b>How old are you</b> What is your name? ...
0
votes
0answers
63 views

Print in a Table Format Java using printf

Im building a stock Control system, on this it will have a feature to print the stock list, which the stock are stored in a Linked list. How could i get the list to be printed in a tabular format, ...
1
vote
3answers
119 views

Can we use String.format() to pad/prefix with a character with desired length?

Can java.lang.String.format(String str, String str1) be used for adding prefix of a particular character. I could do this for a number like: int sendID = 202022; String usiSuffix = ...
6
votes
5answers
384 views

No line break before comment after else in Eclipse

I've long been a "align curly braces" person. And with wide monitors I put long comments after code. So in Eclipse I want to do format things like this: if(foo) { something(); } else { ...
-3
votes
2answers
25 views

File Format support [closed]

I am making a software using java as programming language. Now, the software needs to be compatible in both windows as well as linux. So, in which file format should I convert the code so that the ...
2
votes
1answer
50 views

Why do I get IllegalFormatConversionException when formatting a hexadecimal string to three digits?

I am working on a class project where I have to build a two pass assembler for an instruction set we were looking at in class. In the first pass function, a segment of my code looks like this: ...
2
votes
4answers
65 views

How do I format a list of Strings in Java from a TreeMap to print this way?

I'm making a list of strings in a TreeMap to keep track of grades for a bunch of students. Right now my program is printing the list of strings like this: Jimmy: C+ Tim: A Samantha: B- Mike: A- ...
1
vote
2answers
175 views

How to show a date in french format with IReport

I'm trying to show a date in jasper report with french format . I change the options of this report but everytime I get a date in english . What can I do please ? Here is some picture of what I get ...
0
votes
1answer
45 views

Iteratively formatting the specific parts of a String in Java

I know that in java we can do something like: String s = "I am a %s %s" s = s.format("format", "string") I was wondering if it is possible to replace the occurance of only one%s at a time and ...
1
vote
3answers
76 views

java string.replace running too slow with methods

I have a method with a String as an argument that replaces specific placeholders with strings from methods: public static String format(String in) { in=in.replace("[time]",getTime()); //just some ...
0
votes
2answers
61 views

formatting array values in java

I'm writing a menu powered program that allows the user to create a certain number of teams, then record wins and losses of those teams. I want to format my output so it looks clean, however, I'm ...
1
vote
2answers
73 views

Formatting String

I'm trying to format Strings as they arrive and meet certain criteria. However if the tokens below are of different length things don't match up, How do I do this? I want all the "IP address"s to ...
0
votes
3answers
62 views

Format Java Double to be 7 characters

I have a lot of Java doubles. In order to display on the GUI correctly, they can only be 7 characters long, including -negative sign and .period So let's say it's like: 12345.7890 1.34567890 ...
1
vote
3answers
152 views

Formatting with java: Mixing text and pictures

I have a certain text, that i want to annotate for the user. Unfortunately i don't even see where to begin. My algorithm gives as output a range on a string. What i am going for is something like ...
2
votes
2answers
110 views

How to truncate using printf in Java?

I'm trying to truncate to the third decimal point using printf in Java, but I keep getting to only the second decimal point. Here's the line of code where I was attempting this: ...
0
votes
1answer
110 views

How to format UDP packet in Java?

I need to send some data to an IP address with UDP. I don't know how to format my string. Am i need to send multiple data packets? From the developer page I only get this information: What am I ...
1
vote
2answers
153 views

Apache poi - Thousand separator

Do you know how can I set the thousand sepator and have a value formatted like this? 403.000 I'm using apache-poi 3.8 with Java. I googled it a lot but I didn't find an answer. I can't use a string ...
0
votes
1answer
95 views

Formatting xml texts using tokens in String

I'm trying to get some code which will for example change "^^text^^" Into something like this "text" So I need it to remove the ^^ tokens and add a Spannable Text on the "text" string making it ...

1 2 3 4 5 7