how to convert QByteArray to Array in qt?












-4















i have a QByteArray variable like this:



QByteArray read= port->readAll();


now i want convert read to Array for write binary file like this:



int b = {}; // lengh of array is port->readAll() size
QFile myFile("e:/test/test.dat");
if(!myFile.open(QIODevice::WriteOnly))return;
myFile.write((char*)b,sizeof(int));
myFile.flush();
myFile.close();









share|improve this question




















  • 1





    Why can't you use data() for that - do you need it to outlive the QByteArray, or is there another reason? BTW, I really wouldn't use the name read for a variable - too similar to popular library or system call names.

    – Toby Speight
    Nov 22 '18 at 16:34













  • my problem is convert QByteArray to Array.

    – jocker fantom
    Nov 22 '18 at 16:39






  • 2





    Why do you need to, given that you can access the contents of the QByteArray for purposes such as the code you show? It's not at all obvious what you're trying to do that's not achieved by myFile.write(read.data(), sizeof (int)). Or, if you meant to write the whole array, myFile.write(read.data(), read.size()) or equivalently, just myFile.write(read).

    – Toby Speight
    Nov 22 '18 at 16:43











  • i hav to read all data from modem: QByteArray read= port->readAll(); and write it

    – jocker fantom
    Nov 22 '18 at 16:51













  • So why can't you just pass the QByteArray to QFile::write() as I've shown? It's still unclear why that won't work for you.

    – Toby Speight
    Nov 22 '18 at 16:56
















-4















i have a QByteArray variable like this:



QByteArray read= port->readAll();


now i want convert read to Array for write binary file like this:



int b = {}; // lengh of array is port->readAll() size
QFile myFile("e:/test/test.dat");
if(!myFile.open(QIODevice::WriteOnly))return;
myFile.write((char*)b,sizeof(int));
myFile.flush();
myFile.close();









share|improve this question




















  • 1





    Why can't you use data() for that - do you need it to outlive the QByteArray, or is there another reason? BTW, I really wouldn't use the name read for a variable - too similar to popular library or system call names.

    – Toby Speight
    Nov 22 '18 at 16:34













  • my problem is convert QByteArray to Array.

    – jocker fantom
    Nov 22 '18 at 16:39






  • 2





    Why do you need to, given that you can access the contents of the QByteArray for purposes such as the code you show? It's not at all obvious what you're trying to do that's not achieved by myFile.write(read.data(), sizeof (int)). Or, if you meant to write the whole array, myFile.write(read.data(), read.size()) or equivalently, just myFile.write(read).

    – Toby Speight
    Nov 22 '18 at 16:43











  • i hav to read all data from modem: QByteArray read= port->readAll(); and write it

    – jocker fantom
    Nov 22 '18 at 16:51













  • So why can't you just pass the QByteArray to QFile::write() as I've shown? It's still unclear why that won't work for you.

    – Toby Speight
    Nov 22 '18 at 16:56














-4












-4








-4








i have a QByteArray variable like this:



QByteArray read= port->readAll();


now i want convert read to Array for write binary file like this:



int b = {}; // lengh of array is port->readAll() size
QFile myFile("e:/test/test.dat");
if(!myFile.open(QIODevice::WriteOnly))return;
myFile.write((char*)b,sizeof(int));
myFile.flush();
myFile.close();









share|improve this question
















i have a QByteArray variable like this:



QByteArray read= port->readAll();


now i want convert read to Array for write binary file like this:



int b = {}; // lengh of array is port->readAll() size
QFile myFile("e:/test/test.dat");
if(!myFile.open(QIODevice::WriteOnly))return;
myFile.write((char*)b,sizeof(int));
myFile.flush();
myFile.close();






c++ qt qbytearray






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 22 '18 at 16:57









Toby Speight

16.6k134065




16.6k134065










asked Nov 22 '18 at 16:27









jocker fantomjocker fantom

144




144








  • 1





    Why can't you use data() for that - do you need it to outlive the QByteArray, or is there another reason? BTW, I really wouldn't use the name read for a variable - too similar to popular library or system call names.

    – Toby Speight
    Nov 22 '18 at 16:34













  • my problem is convert QByteArray to Array.

    – jocker fantom
    Nov 22 '18 at 16:39






  • 2





    Why do you need to, given that you can access the contents of the QByteArray for purposes such as the code you show? It's not at all obvious what you're trying to do that's not achieved by myFile.write(read.data(), sizeof (int)). Or, if you meant to write the whole array, myFile.write(read.data(), read.size()) or equivalently, just myFile.write(read).

    – Toby Speight
    Nov 22 '18 at 16:43











  • i hav to read all data from modem: QByteArray read= port->readAll(); and write it

    – jocker fantom
    Nov 22 '18 at 16:51













  • So why can't you just pass the QByteArray to QFile::write() as I've shown? It's still unclear why that won't work for you.

    – Toby Speight
    Nov 22 '18 at 16:56














  • 1





    Why can't you use data() for that - do you need it to outlive the QByteArray, or is there another reason? BTW, I really wouldn't use the name read for a variable - too similar to popular library or system call names.

    – Toby Speight
    Nov 22 '18 at 16:34













  • my problem is convert QByteArray to Array.

    – jocker fantom
    Nov 22 '18 at 16:39






  • 2





    Why do you need to, given that you can access the contents of the QByteArray for purposes such as the code you show? It's not at all obvious what you're trying to do that's not achieved by myFile.write(read.data(), sizeof (int)). Or, if you meant to write the whole array, myFile.write(read.data(), read.size()) or equivalently, just myFile.write(read).

    – Toby Speight
    Nov 22 '18 at 16:43











  • i hav to read all data from modem: QByteArray read= port->readAll(); and write it

    – jocker fantom
    Nov 22 '18 at 16:51













  • So why can't you just pass the QByteArray to QFile::write() as I've shown? It's still unclear why that won't work for you.

    – Toby Speight
    Nov 22 '18 at 16:56








1




1





Why can't you use data() for that - do you need it to outlive the QByteArray, or is there another reason? BTW, I really wouldn't use the name read for a variable - too similar to popular library or system call names.

– Toby Speight
Nov 22 '18 at 16:34







Why can't you use data() for that - do you need it to outlive the QByteArray, or is there another reason? BTW, I really wouldn't use the name read for a variable - too similar to popular library or system call names.

– Toby Speight
Nov 22 '18 at 16:34















my problem is convert QByteArray to Array.

– jocker fantom
Nov 22 '18 at 16:39





my problem is convert QByteArray to Array.

– jocker fantom
Nov 22 '18 at 16:39




2




2





Why do you need to, given that you can access the contents of the QByteArray for purposes such as the code you show? It's not at all obvious what you're trying to do that's not achieved by myFile.write(read.data(), sizeof (int)). Or, if you meant to write the whole array, myFile.write(read.data(), read.size()) or equivalently, just myFile.write(read).

– Toby Speight
Nov 22 '18 at 16:43





Why do you need to, given that you can access the contents of the QByteArray for purposes such as the code you show? It's not at all obvious what you're trying to do that's not achieved by myFile.write(read.data(), sizeof (int)). Or, if you meant to write the whole array, myFile.write(read.data(), read.size()) or equivalently, just myFile.write(read).

– Toby Speight
Nov 22 '18 at 16:43













i hav to read all data from modem: QByteArray read= port->readAll(); and write it

– jocker fantom
Nov 22 '18 at 16:51







i hav to read all data from modem: QByteArray read= port->readAll(); and write it

– jocker fantom
Nov 22 '18 at 16:51















So why can't you just pass the QByteArray to QFile::write() as I've shown? It's still unclear why that won't work for you.

– Toby Speight
Nov 22 '18 at 16:56





So why can't you just pass the QByteArray to QFile::write() as I've shown? It's still unclear why that won't work for you.

– Toby Speight
Nov 22 '18 at 16:56












1 Answer
1






active

oldest

votes


















0














No need to create int b = ..etc
Just use either the method QByteArray::data():



QFile file(...);
QByteArray byteArray = ...
...
file.write(byteArray.data(), byteArray.size());


Or you can set the QByteArray's object directly to file.write():



QFile file(...);
QByteArray byteArray = ...;

file.write(byteArray);





share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53435010%2fhow-to-convert-qbytearray-to-array-in-qt%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    No need to create int b = ..etc
    Just use either the method QByteArray::data():



    QFile file(...);
    QByteArray byteArray = ...
    ...
    file.write(byteArray.data(), byteArray.size());


    Or you can set the QByteArray's object directly to file.write():



    QFile file(...);
    QByteArray byteArray = ...;

    file.write(byteArray);





    share|improve this answer




























      0














      No need to create int b = ..etc
      Just use either the method QByteArray::data():



      QFile file(...);
      QByteArray byteArray = ...
      ...
      file.write(byteArray.data(), byteArray.size());


      Or you can set the QByteArray's object directly to file.write():



      QFile file(...);
      QByteArray byteArray = ...;

      file.write(byteArray);





      share|improve this answer


























        0












        0








        0







        No need to create int b = ..etc
        Just use either the method QByteArray::data():



        QFile file(...);
        QByteArray byteArray = ...
        ...
        file.write(byteArray.data(), byteArray.size());


        Or you can set the QByteArray's object directly to file.write():



        QFile file(...);
        QByteArray byteArray = ...;

        file.write(byteArray);





        share|improve this answer













        No need to create int b = ..etc
        Just use either the method QByteArray::data():



        QFile file(...);
        QByteArray byteArray = ...
        ...
        file.write(byteArray.data(), byteArray.size());


        Or you can set the QByteArray's object directly to file.write():



        QFile file(...);
        QByteArray byteArray = ...;

        file.write(byteArray);






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 23 '18 at 12:06









        Alexander CherninAlexander Chernin

        30529




        30529






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53435010%2fhow-to-convert-qbytearray-to-array-in-qt%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            404 Error Contact Form 7 ajax form submitting

            How to know if a Active Directory user can login interactively

            TypeError: fit_transform() missing 1 required positional argument: 'X'