Source.fromFile(fileName)(enc: Encode),如果遇到错误: java.nio.charset.MalformedInputException: Input length = 1 at java.nio.charset.CoderResult.throwException(CoderResult.java:277) at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:337) at sun.nio.cs.…
1,获取指定类型文件 def getFile(file:File): Array[File] ={ val files = file.listFiles().filter(! _.isDirectory) .filter(t => t.toString.endsWith(".csv")) //此处读取.txt and .csv文件 files ++ file.listFiles().filter(_.isDirectory).flatMap(getFile) } 2,创建文件 指…
/** * 读取文件 * @param filename * @return */ def readFormFile(filename: String) = { var ooop = "" val file = Source.fromFile(filename) for (line <- file.getLines) { ooop += line } file.close ooop } /** * 保存文件 * @param fielname * @param html */ d…
python读取文件常见问题(mac版) 让python的默认编码,和文件的编码保持一致…
package com.shujia.scala import java.io.{BufferedReader, FileReader, FileWriter} import scala.io.{BufferedSource, Source} object Demo2IO { def main(args: Array[String]): Unit = { /* 读取文件 1.java中的方法 2.Scala中source方法 */ val reader = new BufferedReader(…
二进制读取文件: val file = new File("F:\\scalaWorkspace\\ScalaLearning\\files\\test.txt") val in = new FileInputStream(file) val bytes = new Array[Byte](file.length().toInt) in.read(bytes) in.close() 写文件: val out = new PrintWriter("F:\\scalaWorksp…
目录 在本篇博客中你将会学习并了解常用的文件处理任务,例如读取文件的一行文本,本博客的要点包含: Source.fromFile(...).getLines.toArray 输出文件所有行 Source.fromFile(...).mkString 以字符串形式输出文件内容 将字符串转换为数字,可以使用toInt或toDouble方法 使用java的PrintWriter写入文本文件 "正则".r是一个Regex对象 若你的正则表达式包含反斜杠或者引号,请用""&q…
/*文件64位编码*/ public static void main(String[] args) {    byte[] fileByte = toByteArray(newFile);   String imgStr = new BASE64Encoder().encode(fileByte);  } /*读取文件的字节数组*/public static byte[] toByteArray(File file) throws IOException { File f = file; if…
解决 python 读取文件乱码问题(UnicodeDecodeError) 确定你的文件的编码,下面的代码将以'utf-8'为例,否则会忽略编码错误导致输出乱码 解决方案一 with open(r'/Users/mac/Desktop/face/2.1.docx', 'rb', ) as fr: data = fr.read() line_list = data.decode('utf8').split('\n') data_l = [] for line in line_list: line…
Python读取文件中的字符串已经是unicode编码,如:\u53eb\u6211,需要转换成中文时有两种方式 1.使用eval: eval("u"+"\'"+unicodestr+"\'") 2.使用decode: str1 = '\u4f60\u597d' print str1.decode('unicode_escape') 你好 unicodestr.decode('unicode_escape')  # 将转义字符\u读取出来 # ’…