- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个运输 map 项目。我为该位置创建了一个名为 Chart 的对象和一个名为 Pos 的对象。我无法开始工作的是,当我从文本文件读取图表以正确创建对象 Pos 时,因为这就是失败的地方。
现在这是 Pos 类
private Pos Pos;
public Pos(int d, int m, int t){
Pos pos = new Pos(d,m,t);
}
现在这是图表类
private String title;
private String colorString;
private String scale;
private String edition;
private Pos north;
private Pos south;
private Pos west;
private Pos east;
private Chart Chart;
public Chart(Pos north, Pos south, Pos west, Pos east, String color, String scale, String edition, String title){
Chart = new Chart(north, south, west, east, color, scale, edition, title);
}
现在这是我想要创建图表的代码的地方。我已经采取了很多小步骤来确保输出正确:
In in;
String fileName = "charts.txt";
int aantalKaarten;
int kolommen;
String[][] tabel;
int n1,n2,n3,s1,s2,s3,w1,w2,w3,e1,e2,e3;
String color;
String edition;
String scale;
String title;
in = new In(fileName);
aantalKaarten = in.readInt()+1;
for(int i = 0;i < aantalKaarten;i++){
try {
n1 = in.readInt();
n2 = in.readInt();
n3 = in.readInt();
System.out.println("Noordelijke lengtegraad: " + n1 + ", " + n2 + ", " + n3);
s1 = in.readInt();
s2 = in.readInt();
s3 = in.readInt();
System.out.println("Zuidelijke lengtegraad: " + s1 + ", " + s2 + ", " + s3);
w1 = in.readInt();
w2 = in.readInt();
w3 = in.readInt();
System.out.println("westelijke breedtegraad: " + w1 + ", " + w2 + ", " + w3);
e1 = in.readInt();
e2 = in.readInt();
e3 = in.readInt();
System.out.println("oostelijke breedtegraad: " + e1 + ", " + e2 + ", " + e3);
color = in.readString();
System.out.println("De kleur van de kaart: " + color);
edition = in.readString();
System.out.println("Editie: " + edition);
scale = in.readString();
System.out.println("Schaal: " + scale);
title = in.readLine();
System.out.println("Kaart: " + title);
System.out.println("");
Pos north = new Pos(n1,n2,3);
Pos south = new Pos(s1,s2,s3);
Pos west = new Pos(w1,w2,w3);
Pos east = new Pos(e1,e2,e3);
Chart chart = new Chart(north, south, west, east, color, scale, edition, title);
}
catch(NoSuchElementException eNSEE){
System.out.println("No such element exception");
}
}
in.close();
我真的希望能得到一些帮助,因为我陷入了绝望的困境。可能对位置所做的更改我也必须更改图表,因为构建是相同的
预先感谢您的帮助。
编辑:这是我正在处理的文本文件
20
51 53 00 3 49 00 51 49 70 3 59 00 B ed:2011/2012 1:50.000 ANWB Z 5
51 53 00 3 59 00 51 49 70 4 09 15 B ed:2011/2012 1:50.000 ANWB Z 6
51 49 50 3 28 90 51 42 10 3 49 00 B ed:2011/2012 1:50.000 ANWB Z 7-8
51 49 50 3 49 00 51 42 10 4 09 00 B ed:2011/2012 1:50.000 ANWB Z 9-10
51 41 80 3 19 20 51 34 00 3 39 60 B ed:2011/2012 1:50.000 ANWB Z 11-12
51 42 20 3 39 40 51 34 40 3 59 70 B ed:2011/2012 1:50.000 ANWB Z 13-14
51 42 40 3 59 70 51 34 60 4 19 80 B ed:2011/2012 1:50.000 ANWB Z 15-16
51 42 60 4 19 60 51 34 80 4 29 80 B ed:2011/2012 1:50.000 ANWB Z 17
51 34 20 3 19 80 51 26 80 3 39 90 B ed:2011/2012 1:50.000 ANWB Z 19-20
51 34 60 3 39 80 51 26 80 4 00 00 B ed:2011/2012 1:50.000 ANWB Z 21-22
51 34 60 3 59 70 51 27 20 4 20 00 B ed:2011/2012 1:50.000 ANWB Z 23-24
51 26 70 3 20 00 51 19 00 3 40 20 B ed:2011/2012 1:50.000 ANWB Z 25-26
51 27 00 3 40 00 51 19 40 4 00 00 B ed:2011/2012 1:50.000 ANWB Z 27-28
51 27 15 4 00 00 51 19 60 4 20 20 B ed:2011/2012 1:50.000 ANWB Z 29-30
51 27 60 2 28 60 51 00 00 2 58 40 G ed:2012 1:100.000 Hydro 1801.2
51 32 00 2 51 60 51 13 70 3 36 00 G ed:2012 1:100.000 Hydro 1801.3
51 30 50 3 22 50 51 20 50 3 44 30 G ed:2012 1:50.000 Hydro 1801.4
51 48 60 3 00 00 51 30 40 3 40 00 G ed:2012 1:100.000 Hydro 1801.5
52 00 06 3 23 00 51 42 40 4 07 20 G ed:2012 1:100.000 Hydro 1801.6
52 15 60 3 46 40 51 57 60 4 29 60 G ed:2012 1:100.000 Hydro 1801.7
最佳答案
你的代码
public Pos(int d, int m, int t){
Pos pos = new Pos(d,m,t);
}
当这段代码运行时,它会递归地调用Pos构造函数本身,因此它会被堆栈并调用内部Pos(),那么StackoverFlowException就不会那么奇怪了。
你的类(class)应该是
class Pos {
int d;
int m;
int t;
public Pos(int d, int m, int t) {
this.d = d;
this.m = m;
this.t = t;
}
}
关于Java stackOverFlow 错误对象的编码方式不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22284984/
我对自定义 CSS 或在将图像作为 Logo 上传到页面时使用编码 block 有疑问。我正在为我的网站使用 squarespace,我需要帮助编码我的 Logo 以使其适合每个页面。一个选项是使用自
如 encoding/json 包文档中所述, Marshal traverses the value v recursively. If an encountered value implement
我必须做一些相当于Java中的iconv -f utf8 -t sjisMS $INPUT_FILE的事情。该命令在 Unix 中 我在java中没有找到任何带有sjisMS的编码。 Java中有Sh
从 PHP 5.3 迁移到 PHP 5.6 后,我遇到了编码问题。我的 MySQL 数据库是 latin1,我的 PHP 文件是 windows-1251。现在一切都显示为“ñëåäíèòå àäðå
我有一个 RScript文件(我们称之为 main.r ),它引用了另一个文件,使用以下代码: source("functions.R") 但是,当我运行 RScript 文件时,它提示以下错误:
我无法设法从 WSDL 创建 RPC/编码风格的代码 - 有谁知道哪个框架可以做到这一点? 带有 adb 和 xmlbeans 映射的 Axis2 无法正常工作(无法处理响应中的肥皂编码)直接使用 X
安装了最新版本的Node.Js()和npm包**(1.2.10)**当我运行 Express 命令来生成项目时,它向我抛出以下错误 buffer.js:240 switch (encoding &
JavaScript中有JSON编码/解码base64编码/解码函数吗? 最佳答案 是的,btoa() 和 atob() 在某些浏览器中可以工作: var enc = btoa("this is so
>>> unicode('восстановление информации', 'utf-16') Traceback (most recent call last): File "", line
我当然熟悉 java.net.URLEncoder 和 java.net.URLDecoder 类。但是,我只需要 HTML 样式的编码。 (我不想将 ' ' 替换为 '+' 等)。我不知道任何只做
有一个非常简单的 SSIS 包: OLE DB Source 通过 View 获取数据(数据库表 nvarchar 或 nchar 中的所有字符串列)。 派生列,用于格式化现有日期并将其添加到数据集(
我正在使用一个在 Node 中进行base64编码的软件,如下所示: const enc = new Buffer('test', 'base64') console.log(enc) 显示: 我正
我试图将带有日语字符的数据插入到 oracle 数据库中。事情是保存在数据库中的是一堆倒置的问号。我该如何解决这个问题 最佳答案 见 http://www.errcode.net/blogs/?p=6
当我在 java 中解压 zip 文件时,我发现文件名中出现了带有重音字符的奇怪行为。 西索: Add File user : L'equipe Technique -- Folder : spec
在网上冲浪我找到了 ExtJS 的 Ext.Gantt 插件,该扩展有一个特殊的编码。任何人都知道如何编码那样或其他复杂的形式。 Encoded Gantt Chart 最佳答案 它似乎被 Dean
我正在用C语言做一个编码任务,我进展顺利,直到读取符号并根据表格分配相应的代码的部分。我必须连接几个代码,直到它们的长度达到 32 位,为此我必须将它们写入一个文件中。这种写入文件的方法给我带来了很多
我有一个外部链接的 javascript 文件。在那个 javascript 里面,我有这个功能: function getMonthNumber(monthName){ monthName = mo
使用mechanize,我检索到一个网页的源页面,其中包含一些非ASCII字符,比如汉字。 代码如下: #using python2.6 from mechanize import Browser b
我有一个包含字母 ø 的文件。当我用这段代码 File.ReadLines(filePath) 读取它时,我得到了一个问号而不是它。 当我像这样添加编码时 File.ReadLines(filePat
如何翻译下面的字符串 H.P. Dembinski, B. K\'{e}gl, I.C. Mari\c{s}, M. Roth, D. Veberi\v{c} 进入 H. P. Dembinski,
我是一名优秀的程序员,十分优秀!