This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get purge anydesk | |
sudo apt-get autoclean | |
sudo apt-get autoremove | |
sudo apt update | |
sudo apt list --upgradable | |
sudo apt upgrade -y | |
https://download.anydesk.com/linux/anydesk_4.0.0-1_amd64.deb | |
sudo dpkg -i anydesk_4.0.0-1_amd64.deb | |
sudo apt install -f | |
sudo apt update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void imprimirQuantidadeLinhasArquivo() throws IOException { | |
File arquivoLeitura = new File("arquivo.txt"); | |
LineNumberReader linhaLeitura = new LineNumberReader(new FileReader(arquivoLeitura)); | |
linhaLeitura.skip(arquivoLeitura.length()); | |
int qtdLinha = linhaLeitura.getLineNumber(); | |
System.out.println("Quantidade de Linhas no arquivo: " + qtdLinha); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<module type="PYTHON_MODULE" version="4"> | |
<component name="NewModuleRootManager"> | |
<content url="file://$MODULE_DIR$" /> | |
<orderEntry type="inheritedJdk" /> | |
<orderEntry type="sourceFolder" forTests="false" /> | |
</component> | |
</module> |