Is it possible to read an MS Word document into Matlab and convert to binary code?

120 visualizzazioni (ultimi 30 giorni)
Good day to you all,
I am currently studying on a level 5 FDSc (go easy, I am low level :)) course and I am looking into methods to achive data secrecy for my dissertation. I have picked quite a large subject to explore here it seems and there are lots of avenues (and pitfalls) to explore!
My initial pathway to progress here is to produce working code, which can take a secret message embedded within a MS Word document and output a binary format code for further encryption using maybe DES16 or something simpler that I will write myself. The end goal is to combine multi layers of encrytion.
My problem is that; so far I am theoretically designing in a way that would use Visual Studio to do the initial conversion and subsiquently means that I would need to use VS for the decryption final stage.
For the ease of operation I would ideally like to keep everything in MATLAB as I have some interesting ideas to progress with later on using MATLAB toolboxes.
So the question then; "Can I import and convert MS Word documents within Matlab?"
Thank-you for your time.
Daz

Risposta accettata

Tesfaye Girma
Tesfaye Girma il 28 Feb 2021
%yes offcourse you can
%you can follow this path and read the file you want in matlab
word = actxserver('Word.Application');
wdoc = word.Documents.Open('C:\somewhere\somefile.docx');
%wdoc is the Document object which you can query and navigate.
sometext = wdoc.Content.Text
  1 Commento
darren Clipson
darren Clipson il 1 Mar 2021
Fantastic, thank you for your help!
As the information retrieved from the Word.docx is displayed as plain text, is there also a way to rebuild and open the document in word using MATLAB commands also?
For example, base user (myself right now) would force MATLAB to retrieve the information stored in document and encrypt using 'some' method. Second user would recieve the encrypted document, open within MATLAB and using the decode script (to be compiled); be able to open the original document (all doc.x formatting present).
All of the processes regarding the encryption I will tackle seperately to this question. However, before I proceed I need to prove that MATLAB can handle the beginning, and the end of the function to keep the system simple.
Best Regards.
Daz

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Cell Arrays in Help Center e File Exchange

Prodotti


Release

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by