Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. quazip
    Log in to post

    • UNSOLVED Qt 6: Replacement for QTextCodec
      General and Desktop • qt6 quazip qtextcodec core5compat • • Bamp  

      2
      0
      Votes
      2
      Posts
      169
      Views

      Hi, yes I had a similar issue when upgrading to Qt6, I changed to using QStringConverter Because I sometimes I to build for Qt 5.15.2 my code looks like this example: ... // set the text encoding for the stream #if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0)) ts.setCodec(bUtf8 ? "UTF-8" : "ISO 8859-1"); #else ts.setEncoding(bUtf8 ? QStringConverter::Utf8 : QStringConverter::Latin1); #endif ...
    • SOLVED .DAT file not extracted using Quazip library in qt
      General and Desktop • file file read quazip extract zip • • HemantSuryawanshi  

      8
      0
      Votes
      8
      Posts
      144
      Views

      it worked. thanks @VRonin
    • SOLVED Cannot compile quazip 0.7.3 with Qt 5.10.1 MinGW
      3rd Party Software • 3rd party quazip qt 5.10.1 • • bam500  

      3
      0
      Votes
      3
      Posts
      1608
      Views

      Yes I use the builtin Qt zlib Thank you @ambershark I have added the following line in the quazip project .pro : LIBS += -lz Now I can compile it.
    • UNSOLVED QuaZip Unzip Trouble
      General and Desktop • quazip • • Helson  

      3
      0
      Votes
      3
      Posts
      842
      Views

      @mrjj Solve the problem loading the data is this way. QDataStream out(&dstFile); out.writeRawData(ba.data(), ba.size()); And works like a charm! Thank you!