पढ़ने के लिए, उपयोगी अमूर्तता है Source
। मैं टेक्स्ट फ़ाइल में लाइनें कैसे लिख सकता हूं?
पढ़ने के लिए, उपयोगी अमूर्तता है Source
। मैं टेक्स्ट फ़ाइल में लाइनें कैसे लिख सकता हूं?
जवाबों:
2019 (8 साल बाद) को संपादित करें, स्काला-आईओ बहुत सक्रिय नहीं है, यदि कोई हो, तो ली हैय अपने स्वयं के पुस्तकालय का सुझाव देता है lihaoyi/os-lib
, जिसे वह नीचे प्रस्तुत करता है ।
जून 2019, ज़ेवियर गुइहोट ने अपने जवाब में पुस्तकालय का उल्लेख किया Using
, स्वचालित संसाधन प्रबंधन करने के लिए एक उपयोगिता।
संपादित करें (सितंबर 2011): चूंकि एडुआर्डो कोस्टा Scala2.9 के बारे में पूछते हैं, और रिक -777 टिप्पणी के बाद से कि scalax.IO कमिटमेंट हिस्ट्री 2009 के मध्य से बहुत ज्यादा गैर-मौजूद है ...
स्काला-आईओ ने जगह बदल ली है: जेथ ईशर ( एसओ पर भी)सेइसकी गिटहब रेपो देखें:
स्काला IO अंब्रेला प्रोजेक्ट में IO के विभिन्न पहलुओं और विस्तार के लिए कुछ उप परियोजनाएं शामिल हैं।
स्काला IO के दो मुख्य घटक हैं:
- कोर - कोर मुख्य रूप से मनमाने स्रोतों और सिंक से पढ़ने और लिखने के डेटा से संबंधित है। कोने के पत्थर के लक्षण हैं
Input
,Output
औरSeekable
जो कोर एपीआई प्रदान करते हैं।
महत्व के अन्य वर्ग हैंResource
,ReadChars
औरWriteChars
।- फ़ाइल - फाइल एक
File
(बुलायाPath
) एपीआई है जो जावा 7 एनआईओ फाइल सिस्टम और एसबीटी पाथफाइंडर एपीआई के संयोजन पर आधारित है।
Path
औरFileSystem
स्काला आईओ फाइल एपीआई में मुख्य प्रवेश बिंदु हैं।
import scalax.io._
val output:Output = Resource.fromFile("someFile")
// Note: each write will open a new connection to file and
// each write is executed at the begining of the file,
// so in this case the last write will be the contents of the file.
// See Seekable for append and patching files
// Also See openOutput for performing several writes with a single connection
output.writeIntsAsBytes(1,2,3)
output.write("hello")(Codec.UTF8)
output.writeStrings(List("hello","world")," ")(Codec.UTF8)
मूल उत्तर (जनवरी 2011), स्काला-आईओ के लिए पुराने स्थान के साथ:
यदि आप Scala2.9 की प्रतीक्षा नहीं करना चाहते हैं, तो आप scala-incubator / scala-io लाइब्रेरी का उपयोग कर सकते हैं ।
(जैसा कि " क्यों स्काला स्रोत अंतर्निहित इनपुटस्ट्रीम बंद नहीं करता है? "
नमूने देखें
{ // several examples of writing data
import scalax.io.{
FileOps, Path, Codec, OpenOption}
// the codec must be defined either as a parameter of ops methods or as an implicit
implicit val codec = scalax.io.Codec.UTF8
val file: FileOps = Path ("file")
// write bytes
// By default the file write will replace
// an existing file with the new data
file.write (Array (1,2,3) map ( _.toByte))
// another option for write is openOptions which allows the caller
// to specify in detail how the write should take place
// the openOptions parameter takes a collections of OpenOptions objects
// which are filesystem specific in general but the standard options
// are defined in the OpenOption object
// in addition to the definition common collections are also defined
// WriteAppend for example is a List(Create, Append, Write)
file.write (List (1,2,3) map (_.toByte))
// write a string to the file
file.write("Hello my dear file")
// with all options (these are the default options explicitely declared)
file.write("Hello my dear file")(codec = Codec.UTF8)
// Convert several strings to the file
// same options apply as for write
file.writeStrings( "It costs" :: "one" :: "dollar" :: Nil)
// Now all options
file.writeStrings("It costs" :: "one" :: "dollar" :: Nil,
separator="||\n||")(codec = Codec.UTF8)
}
यह मानक स्काला से गायब होने वाली सुविधाओं में से एक है जिसे मैंने इतना उपयोगी पाया है कि मैं इसे अपने निजी पुस्तकालय में जोड़ता हूं। (आपके पास शायद एक निजी पुस्तकालय भी होना चाहिए।) कोड इस प्रकार है:
def printToFile(f: java.io.File)(op: java.io.PrintWriter => Unit) {
val p = new java.io.PrintWriter(f)
try { op(p) } finally { p.close() }
}
और यह इस तरह से उपयोग किया जाता है:
import java.io._
val data = Array("Five","strings","in","a","file!")
printToFile(new File("example.txt")) { p =>
data.foreach(p.println)
}
Source
(डिफ़ॉल्ट रूप से डिफ़ॉल्ट एन्कोडिंग)। यदि आप इसे एक सामान्य आवश्यकता पाते हैं, तो आप निश्चित रूप से एक enc: Option[String] = None
पैरामीटर जोड़ सकते हैं f
।
रेक्स केर द्वारा उत्तर के समान, लेकिन अधिक सामान्य। पहले मैं एक सहायक कार्य का उपयोग करता हूं:
/**
* Used for reading/writing to database, files, etc.
* Code From the book "Beginning Scala"
* http://www.amazon.com/Beginning-Scala-David-Pollak/dp/1430219890
*/
def using[A <: {def close(): Unit}, B](param: A)(f: A => B): B =
try { f(param) } finally { param.close() }
तो मैं इस का उपयोग करें:
def writeToFile(fileName:String, data:String) =
using (new FileWriter(fileName)) {
fileWriter => fileWriter.write(data)
}
तथा
def appendToFile(fileName:String, textData:String) =
using (new FileWriter(fileName, true)){
fileWriter => using (new PrintWriter(fileWriter)) {
printWriter => printWriter.println(textData)
}
}
आदि।
एक सरल जवाब:
import java.io.File
import java.io.PrintWriter
def writeToFile(p: String, s: String): Unit = {
val pw = new PrintWriter(new File(p))
try pw.write(s) finally pw.close()
}
import
से जोड़ सकते हैं ?
दूसरा उत्तर देते हुए, क्योंकि मेरे अन्य उत्तरों के संपादन जहां अस्वीकृत हुए।
यह सबसे संक्षिप्त और सरल उत्तर है (गैरेट हॉल के समान)
File("filename").writeAll("hello world")
यह Jus12 के समान है, लेकिन वर्बोसिटी के बिना और सही कोड शैली के साथ
def using[A <: {def close(): Unit}, B](resource: A)(f: A => B): B =
try f(resource) finally resource.close()
def writeToFile(path: String, data: String): Unit =
using(new FileWriter(path))(_.write(data))
def appendToFile(path: String, data: String): Unit =
using(new PrintWriter(new FileWriter(path, true)))(_.println(data))
ध्यान दें कि आपको घुंघराले ब्रेसिज़ की आवश्यकता नहीं है try finally
, न ही लैम्ब्डा और प्लेसहोल्डर सिंटैक्स के उपयोग पर ध्यान दें। बेहतर नामकरण पर भी ध्यान दें।
implemented
शर्त पूरी नहीं करता है । आप उस कोड का उपयोग नहीं कर सकते जो कार्यान्वित नहीं किया गया है। मेरा मतलब है कि आपको यह बताना होगा कि इसे कैसे खोजना है क्योंकि यह डिफ़ॉल्ट रूप से उपलब्ध नहीं है और अच्छी तरह से ज्ञात नहीं है।
यहाँ स्कैला संकलक पुस्तकालय का उपयोग कर एक संक्षिप्त एक लाइनर है:
scala.tools.nsc.io.File("filename").writeAll("hello world")
वैकल्पिक रूप से, यदि आप जावा पुस्तकालयों का उपयोग करना चाहते हैं तो आप यह हैक कर सकते हैं:
Some(new PrintWriter("filename")).foreach{p => p.write("hello world"); p.close}
scala.tools.nsc.io.File("/tmp/myFile.txt")
स्कला 2.11.8 में काम करता है।
String
उपयोग करने के लिए / से बचाने / पढ़ने के लिए एक लाइनर java.nio
।
import java.nio.file.{Paths, Files, StandardOpenOption}
import java.nio.charset.{StandardCharsets}
import scala.collection.JavaConverters._
def write(filePath:String, contents:String) = {
Files.write(Paths.get(filePath), contents.getBytes(StandardCharsets.UTF_8), StandardOpenOption.CREATE)
}
def read(filePath:String):String = {
Files.readAllLines(Paths.get(filePath), StandardCharsets.UTF_8).asScala.mkString
}
यह बड़ी फ़ाइलों के लिए उपयुक्त नहीं है, लेकिन यह काम करेगा।
कुछ लिंक:
java.nio.file.Files.write
java.lang.String.getBytes
scala.collection.JavaConverters
scala.collection.immutable.List.mkString
write
कॉपी करेगा contents
, जिससे इसके शिखर पर contents
अकेले की तुलना में दोगुनी मेमोरी का उपयोग होगा ।
दुर्भाग्य से शीर्ष उत्तर के लिए, स्काला-आईओ मर चुका है। यदि आपको किसी तृतीय-पक्ष निर्भरता का उपयोग करने में कोई आपत्ति नहीं है, तो मेरे OS-Lib लाइब्रेरी का उपयोग करने पर विचार करें । यह फाइलों, रास्तों और फाइल सिस्टम के साथ काम करना बहुत आसान बनाता है:
// Make sure working directory exists and is empty
val wd = os.pwd/"out"/"splash"
os.remove.all(wd)
os.makeDir.all(wd)
// Read/write files
os.write(wd/"file.txt", "hello")
os.read(wd/"file.txt") ==> "hello"
// Perform filesystem operations
os.copy(wd/"file.txt", wd/"copied.txt")
os.list(wd) ==> Seq(wd/"copied.txt", wd/"file.txt")
इसमें फाइलों को लिखने , फाइलों में अपडाउन करने , फाइलों को ओवरराइट करने और कई अन्य उपयोगी / सामान्य ऑपरेशन के लिए वन-लाइनर्स हैं
एक माइक्रो लाइब्रेरी मैंने लिखी: https://github.com/pathikrit/better-files
file.appendLine("Hello", "World")
या
file << "Hello" << "\n" << "World"
शुरू Scala 2.13
, मानक पुस्तकालय एक समर्पित संसाधन प्रबंधन उपयोगिता प्रदान करता है:Using
:।
इसका उपयोग इस मामले में संसाधनों के साथ किया जा सकता है जैसे कि PrintWriter
या BufferedWriter
जो AutoCloseable
फ़ाइल में लिखने के लिए विस्तारित होता है और, इससे कोई फर्क नहीं पड़ता कि संसाधन को बंद करें:
उदाहरण के लिए, java.io
एपी के साथ :
import scala.util.Using, java.io.{PrintWriter, File}
// val lines = List("hello", "world")
Using(new PrintWriter(new File("file.txt"))) {
writer => lines.foreach(writer.println)
}
या java.nio
आपी के साथ :
import scala.util.Using, java.nio.file.{Files, Paths}, java.nio.charset.Charset
// val lines = List("hello", "world")
Using(Files.newBufferedWriter(Paths.get("file.txt"), Charset.forName("UTF-8"))) {
writer => lines.foreach(line => writer.write(line + "\n"))
}
2019 / सितंबर / 01 को अद्यतन
finally
मूल बग जहां मूल Exception
फेंक दिया जाएगा निगल जाएगाtry
finally
Exception
स्काला में आसानी से फ़ाइल लिखने के बारे में इन सभी उत्तरों की समीक्षा करने के बाद, और उनमें से कुछ काफी अच्छे हैं, मेरे पास तीन मुद्दे थे:
scala.util.Try
close
विधि रिवर्स ऑर्डर में प्रत्येक आश्रित संसाधन पर की जाती है - नोट: रिवर्स ऑर्डर में निर्भर संसाधनों को बंद करना एक विफलता की घटना में शायद ही कभी समझा आवश्यकता है। java.lang.AutoCloseable
विनिर्देश जो बहुत हानिकारक और मुश्किल पर आधारित होते हैं कीड़े और चलाने के समय विफलताओं को खोजने के लिएशुरू करने से पहले, मेरा लक्ष्य निर्णायक नहीं है। यह आमतौर पर जावा से आने वाले स्काला / एफपी शुरुआती लोगों के लिए आसान समझ की सुविधा देता है। बहुत अंत में, मैं सभी बिट्स को एक साथ खींचूंगा, और फिर संक्षिप्तता बढ़ाऊंगा।
सबसे पहले, using
विधि को Try
फिर से उपयोग करने के लिए अपडेट किया जाना चाहिए (फिर, संक्षिप्तता यहां लक्ष्य नहीं है)। इसका नाम बदलकर tryUsingAutoCloseable
:
def tryUsingAutoCloseable[A <: AutoCloseable, R]
(instantiateAutoCloseable: () => A) //parameter list 1
(transfer: A => scala.util.Try[R]) //parameter list 2
: scala.util.Try[R] =
Try(instantiateAutoCloseable())
.flatMap(
autoCloseable => {
var optionExceptionTry: Option[Exception] = None
try
transfer(autoCloseable)
catch {
case exceptionTry: Exception =>
optionExceptionTry = Some(exceptionTry)
throw exceptionTry
}
finally
try
autoCloseable.close()
catch {
case exceptionFinally: Exception =>
optionExceptionTry match {
case Some(exceptionTry) =>
exceptionTry.addSuppressed(exceptionFinally)
case None =>
throw exceptionFinally
}
}
}
)
उपरोक्त tryUsingAutoCloseable
विधि की शुरुआत भ्रामक हो सकती है क्योंकि यह प्रथागत एकल पैरामीटर सूची के बजाय दो पैरामीटर सूचियों के लिए प्रतीत होता है। इसे कर्रिंग कहते हैं। और मैं इस बात पर विस्तार से नहीं जाऊँगा कि करीना कैसे काम करती है या यह कभी-कभार कहाँ उपयोगी है। यह पता चला है कि इस विशेष समस्या स्थान के लिए, यह काम का सही उपकरण है।
इसके बाद, हम विधि बनाने की जरूरत, tryPrintToFile
है, जो (या किसी मौजूदा अधिलेखित) एक पैदा करेगा File
और एक लिखने List[String]
। यह एक का उपयोग करता है FileWriter
जो एक द्वारा समझाया जाता है BufferedWriter
जो बदले में एक द्वारा समझाया जाता है PrintWriter
। और प्रदर्शन को ऊंचा करने के लिए, डिफ़ॉल्ट बफ़र आकार डिफ़ॉल्ट से बहुत बड़ा BufferedWriter
है जिसे परिभाषित किया गया है,defaultBufferSize
गया है, और 65536 मान निर्दिष्ट किया गया है।
यहाँ कोड है (और फिर, संक्षिप्तता यहाँ लक्ष्य नहीं है):
val defaultBufferSize: Int = 65536
def tryPrintToFile(
lines: List[String],
location: java.io.File,
bufferSize: Int = defaultBufferSize
): scala.util.Try[Unit] = {
tryUsingAutoCloseable(() => new java.io.FileWriter(location)) { //this open brace is the start of the second curried parameter to the tryUsingAutoCloseable method
fileWriter =>
tryUsingAutoCloseable(() => new java.io.BufferedWriter(fileWriter, bufferSize)) { //this open brace is the start of the second curried parameter to the tryUsingAutoCloseable method
bufferedWriter =>
tryUsingAutoCloseable(() => new java.io.PrintWriter(bufferedWriter)) { //this open brace is the start of the second curried parameter to the tryUsingAutoCloseable method
printWriter =>
scala.util.Try(
lines.foreach(line => printWriter.println(line))
)
}
}
}
}
उपरोक्त tryPrintToFile
विधि उपयोगी है कि यह एक List[String]
इनपुट के रूप में लेता है और इसे एक को भेजता है File
। चलिए अब एक tryWriteToFile
विधि बनाते हैं जो एक लेता है String
और इसे लिखता है a File
।
यहां कोड है (और मैं आपको यहां संक्षिप्तता की प्राथमिकता का अनुमान लगाने दूंगा):
def tryWriteToFile(
content: String,
location: java.io.File,
bufferSize: Int = defaultBufferSize
): scala.util.Try[Unit] = {
tryUsingAutoCloseable(() => new java.io.FileWriter(location)) { //this open brace is the start of the second curried parameter to the tryUsingAutoCloseable method
fileWriter =>
tryUsingAutoCloseable(() => new java.io.BufferedWriter(fileWriter, bufferSize)) { //this open brace is the start of the second curried parameter to the tryUsingAutoCloseable method
bufferedWriter =>
Try(bufferedWriter.write(content))
}
}
}
अंत में, यह एक के File
रूप में एक की सामग्री लाने में सक्षम होने के लिए उपयोगी है String
। जबकि scala.io.Source
सामग्री को आसानी से प्राप्त करने के लिए एक सुविधाजनक विधि प्रदान करता है File
, इस close
विधि का उपयोग Source
अंतर्निहित JVM और फ़ाइल सिस्टम हैंडल को जारी करने के लिए किया जाना चाहिए । यदि ऐसा नहीं किया जाता है, तो संसाधन जारी नहीं किया जाता है जब तक कि जेवीएम जीसी (गारबेज कलेक्टर) Source
अपने आप ही उदाहरण जारी करने के लिए चारों ओर न हो जाए । और फिर भी, केवल एक कमजोर जेवीएम गारंटी है finalize
विधि को जीसी द्वारा close
संसाधन के लिए बुलाया जाएगा । इसका मतलब यह है कि यह ग्राहक की जिम्मेदारी है कि वह स्पष्ट रूप से close
विधि को बुलाए , ठीक उसी तरह जैसे कि ग्राहक की जिम्मेदारी है कि वह किसी वस्तु को लंबा close
कर सकेjava.lang.AutoCloseable
। इसके लिए, हमें उपयोग करने की विधि की एक दूसरी परिभाषा की आवश्यकता है जो संभालती हैscala.io.Source
।
इसके लिए यहाँ कोड है (अभी भी संक्षिप्त नहीं किया जा रहा है):
def tryUsingSource[S <: scala.io.Source, R]
(instantiateSource: () => S)
(transfer: S => scala.util.Try[R])
: scala.util.Try[R] =
Try(instantiateSource())
.flatMap(
source => {
var optionExceptionTry: Option[Exception] = None
try
transfer(source)
catch {
case exceptionTry: Exception =>
optionExceptionTry = Some(exceptionTry)
throw exceptionTry
}
finally
try
source.close()
catch {
case exceptionFinally: Exception =>
optionExceptionTry match {
case Some(exceptionTry) =>
exceptionTry.addSuppressed(exceptionFinally)
case None =>
throw exceptionFinally
}
}
}
)
और यहाँ एक सुपर सरल लाइन स्ट्रीमिंग फ़ाइल रीडर में इसका उपयोग उदाहरण है (वर्तमान में डेटाबेस आउटपुट से टैब-सीमांकित फ़ाइलों को पढ़ने के लिए उपयोग कर रहा है):
def tryProcessSource(
file: java.io.File
, parseLine: (String, Int) => List[String] = (line, index) => List(line)
, filterLine: (List[String], Int) => Boolean = (values, index) => true
, retainValues: (List[String], Int) => List[String] = (values, index) => values
, isFirstLineNotHeader: Boolean = false
): scala.util.Try[List[List[String]]] =
tryUsingSource(scala.io.Source.fromFile(file)) {
source =>
scala.util.Try(
( for {
(line, index) <-
source.getLines().buffered.zipWithIndex
values =
parseLine(line, index)
if (index == 0 && !isFirstLineNotHeader) || filterLine(values, index)
retainedValues =
retainValues(values, index)
} yield retainedValues
).toList //must explicitly use toList due to the source.close which will
//occur immediately following execution of this anonymous function
)
)
उपरोक्त फ़ंक्शन का एक अद्यतन संस्करण एक अलग लेकिन संबंधित स्टैकऑवरफ़्लो प्रश्न के उत्तर के रूप में प्रदान किया गया है ।
अब, निकाले गए आयात के साथ सभी को एक साथ लाना (इतना आसान है कि दोनों एक्लिप्स ScalaIDE और IntelliJ Scala प्लगइन में मौजूद स्कैला वर्कशीट में पेस्ट करना आसान हो जाए, ताकि डेस्कटॉप पर आउटपुट डंप करना आसान हो सके) एक टेक्स्ट एडिटर के साथ आसानी से जांच की जाए। यह वही है जो कोड जैसा दिखता है (बढ़ी हुई सहमति के साथ):
import scala.io.Source
import scala.util.Try
import java.io.{BufferedWriter, FileWriter, File, PrintWriter}
val defaultBufferSize: Int = 65536
def tryUsingAutoCloseable[A <: AutoCloseable, R]
(instantiateAutoCloseable: () => A) //parameter list 1
(transfer: A => scala.util.Try[R]) //parameter list 2
: scala.util.Try[R] =
Try(instantiateAutoCloseable())
.flatMap(
autoCloseable => {
var optionExceptionTry: Option[Exception] = None
try
transfer(autoCloseable)
catch {
case exceptionTry: Exception =>
optionExceptionTry = Some(exceptionTry)
throw exceptionTry
}
finally
try
autoCloseable.close()
catch {
case exceptionFinally: Exception =>
optionExceptionTry match {
case Some(exceptionTry) =>
exceptionTry.addSuppressed(exceptionFinally)
case None =>
throw exceptionFinally
}
}
}
)
def tryUsingSource[S <: scala.io.Source, R]
(instantiateSource: () => S)
(transfer: S => scala.util.Try[R])
: scala.util.Try[R] =
Try(instantiateSource())
.flatMap(
source => {
var optionExceptionTry: Option[Exception] = None
try
transfer(source)
catch {
case exceptionTry: Exception =>
optionExceptionTry = Some(exceptionTry)
throw exceptionTry
}
finally
try
source.close()
catch {
case exceptionFinally: Exception =>
optionExceptionTry match {
case Some(exceptionTry) =>
exceptionTry.addSuppressed(exceptionFinally)
case None =>
throw exceptionFinally
}
}
}
)
def tryPrintToFile(
lines: List[String],
location: File,
bufferSize: Int = defaultBufferSize
): Try[Unit] =
tryUsingAutoCloseable(() => new FileWriter(location)) { fileWriter =>
tryUsingAutoCloseable(() => new BufferedWriter(fileWriter, bufferSize)) { bufferedWriter =>
tryUsingAutoCloseable(() => new PrintWriter(bufferedWriter)) { printWriter =>
Try(lines.foreach(line => printWriter.println(line)))
}
}
}
def tryWriteToFile(
content: String,
location: File,
bufferSize: Int = defaultBufferSize
): Try[Unit] =
tryUsingAutoCloseable(() => new FileWriter(location)) { fileWriter =>
tryUsingAutoCloseable(() => new BufferedWriter(fileWriter, bufferSize)) { bufferedWriter =>
Try(bufferedWriter.write(content))
}
}
def tryProcessSource(
file: File,
parseLine: (String, Int) => List[String] = (line, index) => List(line),
filterLine: (List[String], Int) => Boolean = (values, index) => true,
retainValues: (List[String], Int) => List[String] = (values, index) => values,
isFirstLineNotHeader: Boolean = false
): Try[List[List[String]]] =
tryUsingSource(() => Source.fromFile(file)) { source =>
Try(
( for {
(line, index) <- source.getLines().buffered.zipWithIndex
values = parseLine(line, index)
if (index == 0 && !isFirstLineNotHeader) || filterLine(values, index)
retainedValues = retainValues(values, index)
} yield retainedValues
).toList
)
}
एक स्कैला / एफपी नौसिखिया के रूप में, मैंने उपरोक्त ज्ञान और समाधान अर्जित करने में कई घंटे (ज्यादातर सिर-खरोंच हताशा में) जलाए हैं। मुझे उम्मीद है कि यह अन्य स्कैला / एफपी न्यूबीज को इस विशेष सीखने की कूबड़ में तेजी से प्राप्त करने में मदद करता है।
try-catch-finally
। फिर भी अपने जुनून से प्यार करो।
यहाँ स्केलज़-स्ट्रीम का उपयोग करके फ़ाइल में कुछ पंक्तियाँ लिखने का एक उदाहरण दिया गया है ।
import scalaz._
import scalaz.stream._
def writeLinesToFile(lines: Seq[String], file: String): Task[Unit] =
Process(lines: _*) // Process that enumerates the lines
.flatMap(Process(_, "\n")) // Add a newline after each line
.pipe(text.utf8Encode) // Encode as UTF-8
.to(io.fileChunkW(fileName)) // Buffered write to the file
.runLog[Task, Unit] // Get this computation as a Task
.map(_ => ()) // Discard the result
writeLinesToFile(Seq("one", "two"), "file.txt").run
समथबेस्ट और उसके पहले योगदानकर्ताओं को पार करने के लिए, मैंने नामकरण और संक्षिप्तता में सुधार किया है:
def using[A <: {def close() : Unit}, B](resource: A)(f: A => B): B =
try f(resource) finally resource.close()
def writeStringToFile(file: File, data: String, appending: Boolean = false) =
using(new FileWriter(file, appending))(_.write(data))
Either
त्रुटि से निपटने के लिए उपयोग करता हैdef write(destinationFile: Path, fileContent: String): Either[Exception, Path] =
write(destinationFile, fileContent.getBytes(StandardCharsets.UTF_8))
def write(destinationFile: Path, fileContent: Array[Byte]): Either[Exception, Path] =
try {
Files.createDirectories(destinationFile.getParent)
// Return the path to the destinationFile if the write is successful
Right(Files.write(destinationFile, fileContent))
} catch {
case exception: Exception => Left(exception)
}
val filePath = Paths.get("./testDir/file.txt")
write(filePath , "A test") match {
case Right(pathToWrittenFile) => println(s"Successfully wrote to $pathToWrittenFile")
case Left(exception) => println(s"Could not write to $filePath. Exception: $exception")
}
2019 अपडेट:
सारांश - जावा NIO (या Async के लिए NIO.2) अभी भी स्काला में समर्थित सबसे व्यापक फ़ाइल प्रसंस्करण समाधान है। निम्न कोड एक नई फ़ाइल के लिए कुछ पाठ बनाता और लिखता है:
import java.io.{BufferedOutputStream, OutputStream}
import java.nio.file.{Files, Paths}
val testFile1 = Paths.get("yourNewFile.txt")
val s1 = "text to insert in file".getBytes()
val out1: OutputStream = new BufferedOutputStream(
Files.newOutputStream(testFile1))
try {
out1.write(s1, 0, s1.length)
} catch {
case _ => println("Exception thrown during file writing")
} finally {
out1.close()
}
Path
अपने चुने हुए फ़ाइल नाम के साथ एक ऑब्जेक्ट बनाएंOutputStream
write
फंक्शन में पास करेंइस उत्तर के समान , यहाँ एक उदाहरण है fs2
(संस्करण 1.0.4):
import cats.effect._
import fs2._
import fs2.io
import java.nio.file._
import scala.concurrent.ExecutionContext
import scala.language.higherKinds
import cats.syntax.functor._
object ScalaApp extends IOApp {
def write[T[_]](p: Path, s: String)
(implicit F: ConcurrentEffect[T], cs: ContextShift[T]): T[Unit] = {
Stream(s)
.covary[T]
.through(text.utf8Encode)
.through(
io.file.writeAll(
p,
scala.concurrent.ExecutionContext.global,
Seq(StandardOpenOption.CREATE)
)
)
.compile
.drain
}
def run(args: List[String]): IO[ExitCode] = {
implicit val executionContext: ExecutionContext =
scala.concurrent.ExecutionContext.Implicits.global
implicit val contextShift: ContextShift[IO] =
IO.contextShift(executionContext)
val outputFile: Path = Paths.get("output.txt")
write[IO](outputFile, "Hello world\n").as(ExitCode.Success)
}
}