因此,我目前正在尝试制作一个能够读取一些txt文件的应用程序,并使其可供人们查看其中的信息,但是当我尝试阅读它们时,我遇到了一个问题。
该代码似乎运行良好,但是并没有真正阅读它,我认为它与我使用的定界符有关。我尝试了一系列定界符,但没有用。
这是我项目的git存储库链接,您可以在enerlul / data中找到txt文件。我设法成功读取了painel_cont上的数据,但其余部分却无法读取。
https://github.com/lCtXl/flaskappproject
有什么想法吗?
这是我尝试用来读取文件的代码:
private int[] removeZeros(int[] array, int toRemove)
{
int count = 0;
int arrayLength = array.length;
for (int i = 0; i < array.length; i++)
{
if (array[i] == toRemove)
count++;
}
int[] newArray = new int[arrayLength - count];
int j = 0;
for (int i = 0; i < array.length; i++)
{
if (array[i] != toRemove)
{
newArray[j] = array[i];
j++;
}
}
return newArray;
}
答案 0 :(得分:0)
代码运行正常。该文件似乎格式不正确...
将熊猫数据框转换为字典时,其键是其列标题,在这种情况下,它们将是:
['10 + Ocorr�ncias Relevantes - Base Atualizada �s 12:30.',
' ',
' ',
' .1',
' .2',
' .3',
' .4',
' .5',
' .6',
'Unnamed: 9']
您需要先查看您的文件,确保其标题与模板尝试呈现的键匹配
顺便说一句:Sergipe规则!!! ; )