| | |
| |
|
... прочитам датотека и променам стринг |
прегледано: |
208865 |
вкупно гласови: |
1 |
средна оценка: |
5.0 |
коментари: |
2 |
испрати до пријател
испечати
|
Овој Јава програм илиструра две работи.
1. Како да се промени еден стринг (низа од карактери) со друг стринг
2. Како се чита и запишува од/во датотека преку Јава
import java.net.*;
import java.io.*;
import java.util.*;
public class PromenaNaStringVoDateotka
{
public static void main(String args[]) throws Exception {
if (args.length ! = 4)
{
System.err.println ("Nevalidni komandni parametri");
System.exit(0);
}
String str;
try{
FileInputStream fileInputStream2 = new FileInputStream(args[2]);
DataInputStream dataInputStream = new DataInputStream (fileInputStream2);
FileOutputStream fileOutputStream = new FileOutputStream(args[3]);
DataOutputStream output = new DataOutputStream (fileOutputStream);
while (null != ((str = dataInputStream.readLine()))) {
String s2 = args[0];
String s3 = args[1];
int x = 0;
int y = 0;
String result = "";
while ((x = str.indexOf(s2, y))>-1) {
result+ = str.substring(y,x);
result+ = s3;
y = x+s2.length();
}
result+ = str.substring(y);
str = result;
if(str.indexOf("'',") ! = -1){
continue;
} else {
str = str+"\n";
output.writeBytes(str);
}
}
} catch (IOException ioe){
System.err.println ("I/O Error - " + ioe);
}
}
}
|
|
|
|
|
|
| |
|
|
---|
JavaTM и Java-базираните ознаки се трговски марки или регистрирани трговски марки на Sun Microsystems, Inc. во САД и други држави. Java.com.mk никако не соработува со Sun Microsystems, Inc. Сите други трговски марки се сопственост на нивните сопственици. |
|