Java - Como convertir este codigo java.apple a java.swing

 
Vista:
sin imagen de perfil

Como convertir este codigo java.apple a java.swing

Publicado por sebastian (1 intervención) el 23/11/2014 20:11:25
Hola quisiera saber que que cosas tengo que cambiar para que este java.swing............

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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
import java.applet.Applet;
 
import java.awt.*;
 
public class ej4_0 extends Applet
 
{   int []a;
 
    int n,i;
 
    Label vn,vv;
 
    boolean b,c,d;
 
    String mens="Aqui introducira los valores:";
 
    TextField inn = new TextField ("",2);
 
    TextField inv = new TextField ("",3);
 
    Button bot = new Button("Aceptar");
 
    Button botv = new Button("O.K.");
 
    public void init ()
 
    {   this.setSize(350,500);
 
	vn = new Label ("De cuantos elementos sera el vector?     ");
 
	vv=new Label ("Aqui introducira los elementos");
 
	this.setLayout(new FlowLayout(FlowLayout.RIGHT));
 
	add (vn);
 
	add (inn);
 
	add (bot);
 
	add (inv);
 
	add (botv);
 
    }
 
    public boolean action(Event e,Object o)
 
    {
 
	if (e.target==bot)
 
 
	{   n=Integer.parseInt(inn.getText());
 
	    b=true;
 
	    a=new int[n];
 
	}
 
	if (e.target==botv)
 
	{   a[i]=Integer.parseInt(inv.getText());
 
	    i++;
 
	    if(i==n)
 
	    {   b=false;
 
		c=true;
 
		mens="El arreglo es :";
 
		repaint();
 
	    }
 
	}
 
	if(b==true)
 
	{   mens="Introduzca el elemento "+(i+1)+"";
 
	    repaint();
 
	}
 
	if(c==true)
 
	{   d=true;
 
	}
 
	return true;
 
    }
 
    public void paint (Graphics g)
 
    {   Font letrita = new Font ("TimesRoman", Font.BOLD, 12);
 
	setBackground(Color.cyan);
 
	g.setFont (letrita);
 
	g.drawString(mens,65,50);
 
	if(c==true)
 
	{   int px=0;
 
	    for(int k=0;k<n;k++)
 
	    {   px+=30;
 
		g.drawString(String.valueOf(a[k]),px,80);
 
	    }
 
	}
 
	if(d==true)
 
	{   g.drawString("El vector ordenado es ",30,100);
 
	    int px=0;
 
	    ordenar(a,n);
 
	    for(int k=0;k<n;k++)
 
	    {   px+=30;
 
		g.drawString(String.valueOf(a[k]),px,120);
 
	    }
 
	}
 
   }
 
   public static void ordenar(int a[],int n)
 
   {    for(int j=0;j<n;j++)
 
	{   int aux=a[j];
 
	    int k=j-1;
 
	    while(k>=0&&aux<a[k])
 
	    {   a[k+1]=a[k];
 
		k--;
 
	    }
 
	    a[k+1]=aux;
 
	}
 
   }
 
}

Agadeceria su ayuda gracias!!
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder