- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是新来的,所以我希望我能正确描述这个问题,并在我更喜欢 Java 和东西时帮助其他人。
但这就是我来这里的原因...我需要转换给定的文本文件,以便我可以在名为“SUBDUE”的程序中使用它。
文件中给定图表的格式如下所示:
v 2_i_6 startevent
v 2_i_7 endevent
v 2_i_1 task
v 2_i_2 task
v 2_i_3 task
v 2_i_4 task
v 2_i_5 task
v 2_i_15 and
v 2_i_17 and
v 2_i_14 xor
v 2_i_16 xor
v 2_i_18 xor
v 2_i_19 xor
但是对于程序来说,这个文件中的图表需要看起来像这样:
v 1 startevent
v 2 endevent
v 3 task
v 4 task
v 5 task
v 6 task
v 7 task
v 8 and
v 9 and
v 10 xor
v 11 xor
v 12 xor
v 13 xor
起初我以为我会手工完成。但是我意识到其中有2000个。所以我尝试用 Java 编写一个程序。
所以这是我得到的:
public class Input {
HashMap<String, Integer> replacements = new HashMap<String, Integer>();
public void readFile() throws IOException {
FileReader fr = new FileReader(
"file.txt");
BufferedReader br = new BufferedReader(fr);
String line = null;
StringBuilder sb = new StringBuilder();
int i = 0;
while ((line = br.readLine()) != null) {
if (line.startsWith("%")) {//every graph starts with % and a number so i know which graph is currently in progress
i = 0;
}
if (line.startsWith("v")) {
i++;
replacements.put(line.split(" ")[1], i);
}
}
fr.close();
fr = new FileReader("file.txt");
br = new BufferedReader(fr);
while ((line = br.readLine()) != null) {
for (Entry<String, Integer> e : replacements.entrySet()) {
line = line.replaceAll(e.getKey().toString(), e.getValue().toString());
line.toString();
}
sb.append(line);
System.out.println(line);
try {
Thread.sleep(100);
} catch (InterruptedException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
fr.close();
FileWriter fw = new FileWriter(
new File("file.txt"));
fw.write(sb.toString());
fw.close();
}
当我启动该程序时,它基本上可以正确转换,但有时会发生这种情况:
v 1 startevent
v 2 endevent
v 3 task
v 4 task
v 5 task
v 6 task
v 7 task
v 35 and
v 37 and
v 34 xor
v 36 xor
v 38 xor
v 39 xor
我开始调试,但放弃了,因为我需要遍历整个 Map,直到找到正确的键。所以我删除了 i++
在第一个while-loop
, 所以 i
是0
每时每刻。得到了这样的东西:
v 0 startevent
v 0 endevent
v 0 task
v 0 task
v 0 task
v 0 task
v 0 task
v 05 and
v 07 and
v 04 xor
v 06 xor
v 08 xor
v 09 xor
但不知道为什么只替换了两位数的第一个数。
我希望有人能给我提示,或者更好的选择来按照我的意愿替换这些字符串。
感谢您的回答。
因为这里要求的是我文件的前三张图。抱歉给您带来不便,
%1./konvertiermich/andere/Paper-Leben-Modeliranje_delovnih_procesov/obdelava_narocil.epml.pl
v 1_i_2 startevent
v 1_i_17 endevent
v 1_i_23 endevent
v 1_i_26 endevent
v 1_i_4 task
v 1_i_5 task
v 1_i_9 task
v 1_i_11 task
v 1_i_20 task
v 1_i_21 task
v 1_i_25 task
v 1_i_6 xor
v 1_i_10 xor
v 1_i_13 xor
v 1_i_14 xor
v 1_i_15 xor
v 1_i_19 xor
v 1_i_22 xor
d 1_i_2 1_i_4 arc
d 1_i_5 1_i_6 arc
d 1_i_9 1_i_10 arc
d 1_i_10 1_i_14 arc
d 1_i_10 1_i_15 arc
d 1_i_11 1_i_13 arc
d 1_i_13 1_i_14 arc
d 1_i_13 1_i_15 arc
d 1_i_20 1_i_17 arc
d 1_i_19 1_i_21 arc
d 1_i_21 1_i_22 arc
d 1_i_22 1_i_23 arc
d 1_i_25 1_i_26 arc
d 1_i_4 1_i_5 arc
d 1_i_6 1_i_9 arc
d 1_i_6 1_i_19 arc
d 1_i_10 1_i_11 arc
d 1_i_15 1_i_20 arc
d 1_i_14 1_i_19 arc
d 1_i_22 1_i_25 arc
%2./konvertiermich/andere/Web-Wikipedia.cz/wikipedia.cz.epml.pl
v 2_i_6 startevent
v 2_i_7 endevent
v 2_i_1 task
v 2_i_2 task
v 2_i_3 task
v 2_i_4 task
v 2_i_5 task
v 2_i_15 and
v 2_i_17 and
v 2_i_14 xor
v 2_i_16 xor
v 2_i_18 xor
v 2_i_19 xor
d 2_i_1 2_i_14 arc
d 2_i_3 2_i_18 arc
d 2_i_6 2_i_3 arc
d 2_i_14 2_i_7 arc
d 2_i_15 2_i_5 arc
d 2_i_16 2_i_1 arc
d 2_i_17 2_i_4 arc
d 2_i_17 2_i_2 arc
d 2_i_19 2_i_17 arc
d 2_i_2 2_i_15 arc
d 2_i_4 2_i_15 arc
d 2_i_18 2_i_19 arc
d 2_i_5 2_i_16 arc
d 2_i_14 2_i_19 arc
d 2_i_18 2_i_16 arc
%3./konvertiermich/deutsch/BA-Blau-Customer_Relationship_Management_gestützte_Prozesse_am_Beispiel_des_Unternehmens_Alere/39-Angebotsprozess.pl
v 3_i_1 startevent
v 3_i_19 endevent
v 3_i_2 task
v 3_i_6 task
v 3_i_7 task
v 3_i_10 task
v 3_i_13 task
v 3_i_15 task
v 3_i_18 task
v 3_i_3 xor
v 3_i_8 xor
v 3_i_12 xor
v 3_i_17 xor
d 3_i_1 3_i_2 arc
d 3_i_2 3_i_3 arc
d 3_i_6 3_i_8 arc
d 3_i_7 3_i_8 arc
d 3_i_12 3_i_13 arc
d 3_i_17 3_i_18 arc
d 3_i_18 3_i_19 arc
d 3_i_12 3_i_17 arc
d 3_i_3 3_i_6 arc
d 3_i_3 3_i_7 arc
d 3_i_8 3_i_10 arc
d 3_i_10 3_i_12 arc
d 3_i_13 3_i_15 arc
d 3_i_15 3_i_17 arc
最佳答案
这可以作为起点。拆分字符串似乎是更好的方法。
public static void main(String[] args) {
// TODO code application logic here
String [] input = {"v 2_i_6 startevent", "", "v 2_i_7 endevent"};
for(int i = 0; i < input.length; i++)
{
System.out.println(myStringFormatter(input[i]));
}
}
static String myStringFormatter(String input)
{
if(input.length() > 0)
{
String[] processing = input.split(" ");//Splits the string into 3 parts v, 2_i_6, and startevent
String[] processing2 = processing[1].split("_");//Splits 2_i_6 into 3 parts 2, i, and 6
return processing[0] + " " + processing2[2] + " " + processing[2]; //Takes the first part of the first split, the third part of the second split, and the third part of the first split and put them back together separated by a space
}
return "";//If it gets an empty string, its going to return an empty string
}
Output
关于Java:用整数替换字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41066667/
我正在尝试学习 Fortran,并且看到了很多不同的定义,我想知道他们是否正在尝试完成同样的事情。以下有什么区别? 整数*4 整数(4) 整数(kind=4) 最佳答案 在 Fortran >=90
我以前从未编程过,最近(1 周前)才开始学习!第一门类(class)是函数式编程,使用 Haskell。 我有一项学校作业,我想通过删除一两个步骤来改进它,但我遇到了一个讨厌的错误。 基本上,我创建了
给定以下GraphQL请求和变量: 请求: query accounts($filter:AccountFilter, $first_:String, $skip_:Int) { accounts
我已经搜索了 StackOverflow,但找不到关于如何检查计算器应用程序的数字输入正则表达式的答案,该计算器应用程序将检查每个 keyup 的以下格式(jquery key up): 任何整数,例
类似于我上一篇致歉的文章,但没有那么长篇大论。基本上我想知道当每次重绘调用只重绘屏幕的一小部分时,优化重绘到 JFrame/JPanel 的最佳选择是什么。 此外,除了重绘重载之外,我并不是 100%
所以在我的教科书中有一个使用 f# 的递归函数的例子 let rec gcd = function | (0,n) -> n | (m,n) -> gcd(n % m,m);; 使用此功能,我的教科书
我有一个数据结构,例如表达式树或图形。我想添加一些“测量”功能,例如depth和 size . 如何最好地键入这些函数? 我认为以下三个变体的用处大致相同: depth :: Expr -> Int
这样写比较好 int primitive1 = 3, primitive2 = 4; Integer a = new Integer(primitive1); Integer b = new Inte
我是 Java 8 新手,想根据键对 Map 进行排序,然后在值内对每个列表进行排序。 我试图寻找一种 Java 8 方法来对键和值进行排序。HashMap>映射 map.entrySet().str
这就是我的目标... vector ,int> > var_name (x, pair (y),int>); 其中 x 是 vector var_name 的大小,y 是对内 vector 的大小。
这里是 an answer to "How do I instantiate a Queue object in java?" , Queue is an interface. You can't i
这个问题在这里已经有了答案: Weird Integer boxing in Java (12 个答案) Why are autoboxed Integers and .getClass() val
我们可以使用 C++ STL 做这样的事情吗?如果是,我将如何初始化元素?我试图这样做,但没有成功。 pair,vector>p; p.first[0]=2; 最佳答案 Can we do som
您好,我正在尝试为百分比和整数数组中的数字找到索引。假设 arraynum = ['10%','250','20%','500'] 并且用户发送一个值 15%,这个数字在哪个范围内居住?我可以使用这段
我与三列有关系:ProductName、CategoryID 和 Price。我需要选择仅那些价格高于给定类别中平均产品价格的产品。(例如,当apple(ProductName)是fruit(Cate
我已经坚持了一段时间,我正在尝试将一些数据配对在一起。这是我的代码。 #include #include using namespace std; int main() { pair data(
我收到错误:'(Int, Int)' 与 'CGPoint' 不相同 如何将 (Int, Int) 转换为 CGPoint let zigzag = [(100,100), (100,150)
我在 .cpp 文件中发现了以下代码。我不理解涉及头文件的构造或语法。我确实认识到这些特定的头文件与 Android NDK 相关。但是,我认为这个问题是关于 C++ 语法的一般问题。这些在某种程度上
我将这些输入到 Scala 解释器中: val a : Integer = 1; val b : Integer = a + 1; 我收到消息: :5: error: type mismatch;
C++:vector>v(size);当我试图打印出值时显示 0 作为值,但是当未声明 vector 大小时它显示正确的输出?为什么这样?例如: int x; cin>>x; vector>v(x);
我是一名优秀的程序员,十分优秀!