Warning: Trying to access array offset on value of type bool in /home/feltexco/public_html/felix/wp-content/plugins/google-maps-ready/modules/options/models/options.php on line 16

Warning: Trying to access array offset on value of type bool in /home/feltexco/public_html/felix/wp-content/plugins/google-maps-ready/modules/options/models/options.php on line 16

Warning: Trying to access array offset on value of type bool in /home/feltexco/public_html/felix/wp-content/plugins/google-maps-ready/modules/options/models/options.php on line 16

Warning: Cannot modify header information - headers already sent by (output started at /home/feltexco/public_html/felix/wp-content/plugins/google-maps-ready/modules/options/models/options.php:16) in /home/feltexco/public_html/felix/wp-includes/rest-api/class-wp-rest-server.php on line 1758

Warning: Cannot modify header information - headers already sent by (output started at /home/feltexco/public_html/felix/wp-content/plugins/google-maps-ready/modules/options/models/options.php:16) in /home/feltexco/public_html/felix/wp-includes/rest-api/class-wp-rest-server.php on line 1758

Warning: Cannot modify header information - headers already sent by (output started at /home/feltexco/public_html/felix/wp-content/plugins/google-maps-ready/modules/options/models/options.php:16) in /home/feltexco/public_html/felix/wp-includes/rest-api/class-wp-rest-server.php on line 1758

Warning: Cannot modify header information - headers already sent by (output started at /home/feltexco/public_html/felix/wp-content/plugins/google-maps-ready/modules/options/models/options.php:16) in /home/feltexco/public_html/felix/wp-includes/rest-api/class-wp-rest-server.php on line 1758

Warning: Cannot modify header information - headers already sent by (output started at /home/feltexco/public_html/felix/wp-content/plugins/google-maps-ready/modules/options/models/options.php:16) in /home/feltexco/public_html/felix/wp-includes/rest-api/class-wp-rest-server.php on line 1758

Warning: Cannot modify header information - headers already sent by (output started at /home/feltexco/public_html/felix/wp-content/plugins/google-maps-ready/modules/options/models/options.php:16) in /home/feltexco/public_html/felix/wp-includes/rest-api/class-wp-rest-server.php on line 1758

Warning: Cannot modify header information - headers already sent by (output started at /home/feltexco/public_html/felix/wp-content/plugins/google-maps-ready/modules/options/models/options.php:16) in /home/feltexco/public_html/felix/wp-includes/rest-api/class-wp-rest-server.php on line 1758

Warning: Cannot modify header information - headers already sent by (output started at /home/feltexco/public_html/felix/wp-content/plugins/google-maps-ready/modules/options/models/options.php:16) in /home/feltexco/public_html/felix/wp-includes/rest-api/class-wp-rest-server.php on line 1758
{"id":321,"date":"2014-03-07T12:14:48","date_gmt":"2014-03-07T15:14:48","guid":{"rendered":"http:\/\/www.feltex.com.br\/felix\/?p=321"},"modified":"2014-07-31T13:52:59","modified_gmt":"2014-07-31T16:52:59","slug":"como-ler-propriedades-arquivo","status":"publish","type":"post","link":"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/","title":{"rendered":"Como Ler propriedades do arquivo"},"content":{"rendered":"

Como Ler propriedades do arquivo<\/H1>
\nOl\u00e1 Amigos,<\/p>\n

Hoje trataremos da leitura de propriedades de arquivos no Java. Como o Java \u00e9 uma linguagem multiplataforma os m\u00e9todos demonstrados aqui funcionam em qualquer que possuam uma JVM Instalada. Fiz tratamento especificamente para sistemas linux e Windows.
\n Em outro post trataremos como fazer um programa que manipula arquivos e que seja multiplataforma.<\/p>\n

\"Como<\/p>\n

<\/p>\n

\r\npackage br.com.feltex.arquivo;\r\n\r\nimport java.io.File;\r\n\r\npublic class LeituraPropriedadesArquivo {\r\n\r\npublic static void main(String[] args) {\r\n\ttry {\r\n\t\t\/\/ Este Path est\u00e1 definido para funcionar no Windows\r\n\t\tFile arquivo = new File(\"C:\/relatorio.txt\");\r\n\r\n\t\t\/\/ Para uso no linux apenas descomente a linha abaixo.\r\n\t\t\/\/ arquivo = new File(\"\\\\relatorio.txt\");\r\n\r\n\tSystem.out.println(\"Permite leitura: \" + arquivo.canRead());\r\n\tSystem.out.println(\"Permite escrita: \" + arquivo.canWrite());\r\n\tSystem.out.println(\"Permite Execu\u00e7\u00e3o: \" + arquivo.canExecute());\r\n\tSystem.out.println(\"Est\u00e1 oculto: \" + arquivo.isHidden());\r\n\tSystem.out.println(\"\u00c9 um diret\u00f3rio: \" + arquivo.isDirectory());\r\n\tSystem.out.println(\"\u00c9 um arquivo: \" + arquivo.isFile());\r\n\tSystem.out.println(\"Caminho Absoluto: \" + arquivo.getAbsolutePath());\r\n\tSystem.out.println(\"Diret\u00f3rio pai: \" + arquivo.getParent());\r\n\tSystem.out.println(\"Tamanho em bytes: \" + arquivo.length());\r\n\tSystem.out.println(\"Cria um diret\u00f3rio: \" + arquivo.mkdir());\r\n\tSystem.out.println(\"Cria um caminho de diret\u00f3rios: \"\r\n\t\t\t+ arquivo.mkdirs());\r\n\t\t} catch (Exception e) {\r\n\t\t\te.printStackTrace();\r\n\t\t}\r\n\t}\r\n}\r\n\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"

Como Ler propriedades do arquivo Ol\u00e1 Amigos, Hoje trataremos da leitura de propriedades de arquivos no Java. Como o Java \u00e9 uma linguagem multiplataforma os m\u00e9todos demonstrados aqui funcionam em qualquer que possuam uma JVM Instalada. Fiz tratamento especificamente para …<\/p>\n

Como Ler propriedades do arquivo<\/span> Read More »<\/a><\/p>\n

<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0},"categories":[1,2],"tags":[],"yoast_head":"\nComo Ler propriedades do arquivo<\/title>\n<meta name=\"description\" content=\"Como Ler propriedades do arquivo\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Como Ler propriedades do arquivo\" \/>\n<meta property=\"og:description\" content=\"Como Ler propriedades do arquivo\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/\" \/>\n<meta property=\"og:site_name\" content=\"Aprenda Java\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/feltex.br\" \/>\n<meta property=\"article:published_time\" content=\"2014-03-07T15:14:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2014-07-31T16:52:59+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.feltex.com.br\/felix\/wp-content\/uploads\/2014\/03\/feltex-java-io-150x150.png\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Andr\u00e9 F\u00e9lix\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minuto\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.feltex.com.br\/felix\/#website\",\"url\":\"https:\/\/www.feltex.com.br\/felix\/\",\"name\":\"Aprenda Java\",\"description\":\"Cursos de java, SQL e Engenharia de Software\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.feltex.com.br\/felix\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/#primaryimage\",\"inLanguage\":\"pt-BR\",\"url\":\"http:\/\/www.feltex.com.br\/felix\/wp-content\/uploads\/2014\/03\/feltex-java-io-150x150.png\",\"contentUrl\":\"http:\/\/www.feltex.com.br\/felix\/wp-content\/uploads\/2014\/03\/feltex-java-io-150x150.png\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/#webpage\",\"url\":\"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/\",\"name\":\"Como Ler propriedades do arquivo\",\"isPartOf\":{\"@id\":\"https:\/\/www.feltex.com.br\/felix\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/#primaryimage\"},\"datePublished\":\"2014-03-07T15:14:48+00:00\",\"dateModified\":\"2014-07-31T16:52:59+00:00\",\"author\":{\"@id\":\"https:\/\/www.feltex.com.br\/felix\/#\/schema\/person\/1e49f842c6254b4561b66ccf573c2069\"},\"description\":\"Como Ler propriedades do arquivo\",\"breadcrumb\":{\"@id\":\"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Como Ler propriedades do arquivo\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.feltex.com.br\/felix\/#\/schema\/person\/1e49f842c6254b4561b66ccf573c2069\",\"name\":\"Andr\\u00e9 F\\u00e9lix\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.feltex.com.br\/felix\/#personlogo\",\"inLanguage\":\"pt-BR\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d2d9cc82cab40245e6f803982b1448e6?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d2d9cc82cab40245e6f803982b1448e6?s=96&r=g\",\"caption\":\"Andr\\u00e9 F\\u00e9lix\"},\"sameAs\":[\"http:\/\/www.feltex.com.br\"],\"url\":\"https:\/\/www.feltex.com.br\/felix\/author\/andre.felix\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Como Ler propriedades do arquivo","description":"Como Ler propriedades do arquivo","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/","og_locale":"pt_BR","og_type":"article","og_title":"Como Ler propriedades do arquivo","og_description":"Como Ler propriedades do arquivo","og_url":"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/","og_site_name":"Aprenda Java","article_publisher":"https:\/\/www.facebook.com\/feltex.br","article_published_time":"2014-03-07T15:14:48+00:00","article_modified_time":"2014-07-31T16:52:59+00:00","og_image":[{"url":"http:\/\/www.feltex.com.br\/felix\/wp-content\/uploads\/2014\/03\/feltex-java-io-150x150.png"}],"twitter_misc":{"Escrito por":"Andr\u00e9 F\u00e9lix","Est. tempo de leitura":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/www.feltex.com.br\/felix\/#website","url":"https:\/\/www.feltex.com.br\/felix\/","name":"Aprenda Java","description":"Cursos de java, SQL e Engenharia de Software","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.feltex.com.br\/felix\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"pt-BR"},{"@type":"ImageObject","@id":"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/#primaryimage","inLanguage":"pt-BR","url":"http:\/\/www.feltex.com.br\/felix\/wp-content\/uploads\/2014\/03\/feltex-java-io-150x150.png","contentUrl":"http:\/\/www.feltex.com.br\/felix\/wp-content\/uploads\/2014\/03\/feltex-java-io-150x150.png"},{"@type":"WebPage","@id":"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/#webpage","url":"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/","name":"Como Ler propriedades do arquivo","isPartOf":{"@id":"https:\/\/www.feltex.com.br\/felix\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/#primaryimage"},"datePublished":"2014-03-07T15:14:48+00:00","dateModified":"2014-07-31T16:52:59+00:00","author":{"@id":"https:\/\/www.feltex.com.br\/felix\/#\/schema\/person\/1e49f842c6254b4561b66ccf573c2069"},"description":"Como Ler propriedades do arquivo","breadcrumb":{"@id":"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.feltex.com.br\/felix\/como-ler-propriedades-arquivo\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Como Ler propriedades do arquivo"}]},{"@type":"Person","@id":"https:\/\/www.feltex.com.br\/felix\/#\/schema\/person\/1e49f842c6254b4561b66ccf573c2069","name":"Andr\u00e9 F\u00e9lix","image":{"@type":"ImageObject","@id":"https:\/\/www.feltex.com.br\/felix\/#personlogo","inLanguage":"pt-BR","url":"https:\/\/secure.gravatar.com\/avatar\/d2d9cc82cab40245e6f803982b1448e6?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d2d9cc82cab40245e6f803982b1448e6?s=96&r=g","caption":"Andr\u00e9 F\u00e9lix"},"sameAs":["http:\/\/www.feltex.com.br"],"url":"https:\/\/www.feltex.com.br\/felix\/author\/andre.felix\/"}]}},"_links":{"self":[{"href":"https:\/\/www.feltex.com.br\/felix\/wp-json\/wp\/v2\/posts\/321"}],"collection":[{"href":"https:\/\/www.feltex.com.br\/felix\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.feltex.com.br\/felix\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.feltex.com.br\/felix\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.feltex.com.br\/felix\/wp-json\/wp\/v2\/comments?post=321"}],"version-history":[{"count":7,"href":"https:\/\/www.feltex.com.br\/felix\/wp-json\/wp\/v2\/posts\/321\/revisions"}],"predecessor-version":[{"id":1101,"href":"https:\/\/www.feltex.com.br\/felix\/wp-json\/wp\/v2\/posts\/321\/revisions\/1101"}],"wp:attachment":[{"href":"https:\/\/www.feltex.com.br\/felix\/wp-json\/wp\/v2\/media?parent=321"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.feltex.com.br\/felix\/wp-json\/wp\/v2\/categories?post=321"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.feltex.com.br\/felix\/wp-json\/wp\/v2\/tags?post=321"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}