blob: ac84bde43e2914e4d2c4df468d6365cdc047b3dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
//package nt;
import java.text.*;
public class formato
{
DecimalFormat formato;
int longitud;
String distrib;
public formato ()
{
formato = new DecimalFormat ();
} //Constructor neutro
public formato (int l, String tipo)
{ //constructor con longitud de cadena y numero de decimales.
formato = new DecimalFormat (tipo);
DecimalFormatSymbols dfs = new DecimalFormatSymbols ();
String ch = ".";
dfs.setDecimalSeparator (ch.toCharArray ()[0]);
formato.setDecimalFormatSymbols (dfs);
longitud = l;
}
String aCadena (double numero)
{
String s = formato.format (numero);
int l = s.length ();
String t = "";
for (int i = 1; i <= longitud - l; i++)
t = t + " ";
String fin = t + s;
return fin;
}
String aCadena (float numero)
{
String s = formato.format (numero);
int l = s.length ();
String t = " ";
for (int i = 1; i <= longitud - l; i++)
t = t + " ";
String fin = t + s;
return fin;
}
String aCadena (int numero)
{
String s = formato.format (numero);
int l = s.length ();
String t = "";
for (int i = 1; i <= longitud - l; i++)
t = t + " ";
String fin = t + s;
return fin;
}
}
|