To alter content of the file

Hi
I can not get file.txt that this contained in the jar to alter. it is a file of properties in format text, I get to read the information inside of the file using the package java.util.zip.*! but I don't get to alter that file and to save inside of the jar! It is in time of execution.
this get file:
public void readProps()throws FileNotFoundException, IOException{
java.util.zip.ZipFile zipFile = new java.util.zip.ZipFile("celesc.jar");
java.io.InputStream inputStream = zipFile.getInputStream(new java.util.zip.ZipEntry("files/SerCom.props"));
properties.load(inputStream);
inputStream.close();
zipFile.close();
this should save the file inside of the jar, but it doesn't work.
public void saveProps() throws Exception{
FileOutputStream dest = new FileOutputStream("celesc.jar");
ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(dest));
ZipEntry entry = new ZipEntry("files/SerCom.props");
out.putNextEntry(entry);
//out.write(data, 0, count);
This code is part of an executable jar, celesc.jar

but I don't get to alter that file and to save inside of the jar!No, you don't. You have to create a new jar file, then copy everything from the old jar file to the new file, writing the new version of your special file instead of the old version. However you may want to rethink the idea of keeping that file inside the jar, as recreating the entire jar file is an expensive operation.
PC²

Similar Messages

  • How to write content of the file under folder

    Hi Experts,
    I have following scenario, I have list of files under folder in local desktop(for eg D:\mani)
    I have only filename, using this filename i want to search and get content of the particular file and write in some other location? how to do that? give your suggestions?
    Regards,
    P.Manivannan

    You could go two ways here:
    The first possibility requires that (a) you know what operating system you are working with, and (b) you only need to copy the file, and not do anything else with the contents of it. In this case, probably the easiest way to do this is to use a Runtime exec command for the file you want to copy:
    java.lang.Runtime.getRuntime().exec( "cp D:\mani D:\mani2" );Otherwise, if you need your code to be portable, you can't assume anything about the operating system. Since java.io.File doesn't provide a copy method, you will need to read the entire contents of the file into the vm, and then write them out to a new file. Also, if you need to use the contents of your file in some other way, as well, then you also need to read the entire contents into the vm. In this second case, how you read the file may depend on what kind of data the file contains.
    In general, the following code should work for you:
    final FileInputSteam  fis = new FileInputStream ( new File( "D:\mani"  ) );
    final FileOutputStream fos = new FileOutputStream( new File( "D:\mani2" ) );
    final byte [] buf = new byte[ 1024 ];
    int bytesRead;
    while ( ( bytesRead = fis.read( buf ) ) != 0 )
        fos.write( buf, 0, bytesRead );Don't forget to catch or throw IOException.
    Hope this helps.
    - Adam

  • Retrieve the content of the file in the indexed column

    In Oracle UltraSearch, how to retrieve the content of the file in the indexed colun cache_file_path.
    we try the flowing sql
    SELECT cache_file_path FROM mytable
    WHERE contains (mytable.cache_file_path, 'viet', 1) > 0
    but we only have the cache_file_path column, not the content of the file were indexed.

    Please post on the UltraSearch forum.

  • ITunes library has lost the past year's worth of content, but the files are still in the directory

    Help! How do I restore the past 11.5 months' worth of content to my iTunes library?
    Well this is weird. Suddenly my iTunes library has lost everything added since late January 2014 - almost a year's worth of content. Podcasts, audiobooks, iTunes purchases, MP3s bought elsewhere and imported, movies, TV shows - all gone. Apps added in the past year also seem to be gone, although apps acquired before then have the most current update. As far as I can tell, all of that content is in the file directory structure - it's just not in the iTunes library system.
    Curiously, the "last played" data all seems current, except that many of the more recently played songs have gone missing; tracks that were modified in the past year, but were added in 2013 or before, are still listed as being modified in 2014. Anything changed in the past year remains changed; but anything added in the past year simply isn't there.
    I have no idea what caused this. Earlier today iTunes crashed for random reasons, but that happens every week or two anyway; and for that matter this issue could have developed a couple of days ago, and I just didn't notice it. (I'm sure it can't be older than that - I would have noticed.)
    I've got good Time Machine backups, but I'm not sure how to go about restoring this - I suspect that this help page tells me the steps I need to take, but I'd like to have some confirmation before going through those steps. (And that procedure doesn't involve Time Machine anyway, right?)
    Theoretically I suppose I could also go through my directory and add the files to iTunes, one by one, but it would be extraordinarily complicated to figure out what needed to be added. I'd also like to get back all the metadata - played, unplayed, play count, last played, and so on.
    Restoring the files from Time Machine doesn't seem to make sense to me, because the files aren't actually missing. Would restoring an iTunes Library.itl file help at all?
    Thanks in advance!

    Hm ... I guess I can't edit the post above. Anyway, I seem to have solved it by ...
    Quitting iTunes.
    Going into Home / Music / iTunes, and renaming the file "iTunes Library.itl" to "iTunes Library (corrupt).itl".
    Entering Time Machine, and restoring the "iTunes Library.itl" file from a few days ago. I went back two days, which seemed far enough back to be "before" the problem but not far enough back to have trouble with recent acquisitions.
    Re-opening iTunes - and everything seemed to be back in order.
    So that's fine for now. We'll see if the solution is stable.
    Very, very tentative assignment of blame: I believe iTunes crashed earlier today after I'd synced photos from my iPhone to iPhoto, and then iTunes crashed while iPhoto was closing (and taking its sweet time doing so). If that was indeed the case, that's at least the second time in the past couple of months that trying to sync iPhone photos to iPhoto has caused me significant problems. (The last time led to 80% of my iPhone suddenly being occupied by "Other", and a full restore of the darn thing.)

  • Issue in reading the contents of the file

    Hi all,
            How to read the contents of a text file and assign it to a single context variable and sent it to database I am using File upload control to upload the file. Up to my thing file upload control will give us the path of the file. We need to get the url and read it from it. If i am wrong please correct me and give suggestion to solve this.
    Thanks in advance.

    On UPLOAD click do this:
      public void onActionLoadFile(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionLoadFile(ServerEvent)
         WDWebResourceType FileType = null;
         String FileName = new String();
              //get attribute info for context attribute 'FileUpload'
              IWDAttributeInfo attributeInfo =
                   wdContext.getNodeInfo().getAttribute(
                        IPrivateEmailView.IContextElement.FILE_UPLOAD);
              //get modifiable binary type from the attribute info,requires type cast.
              IWDModifiableBinaryType binaryType =
                   (IWDModifiableBinaryType) attributeInfo.getModifiableSimpleType();
              IPrivateEmailView.IContextElement element =
                   wdContext.currentContextElement();
              //if a file in the 'FileResource' attribute exists
              if (element.getFileUpload() != null) {
                   try {
                        String mimeType = binaryType.getMimeType().toString();
                        byte[] file = element.getFileUpload();
                        //get the size of the uploaded file
                        element.setFileSize(this.getFileSize(file));
                        //get the extension of the uploaded file
                        element.setFileExtension(binaryType.getMimeType().getFileExtension());
                        //NOTE: context attribute 'FileName' must not be set
                        //because the FileUpload-UI-element property 'fileName'
                        //is bound to it. Consequently the fileName is automatically
                        //written to the context after file upload.
                        //report success message
                        wdComponentAPI.getMessageManager().reportMessage(
                        IMessageEmailComp.SF_UPLOAD,
                             new Object[] { binaryType.getFileName()},
                             false);
                        FileType = binaryType.getMimeType();
                        FileName = binaryType.getFileName();
                   } catch (Exception e) {
                        throw new WDRuntimeException(e);
              //if no file in the 'FileResource' attribute exists
              else {
                   //report error message
                   IWDMessageManager msgMgr = wdComponentAPI.getMessageManager();
                   msgMgr.reportContextAttributeMessage(
                        element,
                        attributeInfo,
                        IMessageEmailComp.NO_FILE,
                        new Object[] { "" },
                        true);
              //clear the FileResource context value attribute
              //element.setFileUpload(null);
              String URL;
              URL = this.CreateAndGetPathFileUpload(
                                  wdContext.currentContextElement().getFileUpload(),
                                                      FileName);
    //          if (URL.length() == 1){
    //               //ERROR
         wdContext.currentContextElement().setPATHFileUploaded(URL);
        //@@end
      private String CreateAndGetPathFileUpload(byte[] FileUpload, String FileName){
           String URL = new String();
         try {
              FileOutputStream fos = new FileOutputStream(FileName);
              fos.write(FileUpload);
              fos.close();
         } catch (FileNotFoundException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
         } catch (IOException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
         File fl = new File(FileName);
         URL = fl.getAbsolutePath();
           return URL;
    Forgot the method that give you the URL file.
    Message was edited by: Roberto Tagliento

  • Why is file size increasing while copiying contents of the file.

    Hi,
    Iam copying the contents of a file to another file using streams.But while doing this the size of the destination file is greater than the source file.For example, if iam copying the contents of file A whose size is 78 KB into file B then the size of B is 80 KB. Any body please explain the reason for this.The code i used for copying is given below.
    Thanks in advance.
    public static boolean copyFile(File srcFile,File destFile){
              FileInputStream fis = null;
              FileOutputStream fos = null;
              boolean isCopySucess = false;
              //============================================
              int ReadBytes = 0;
              int BUFSIZ = 4096;
              long fileSize ;
              long copiedBytes=0;
              try
                        fis = new FileInputStream(srcFile);
                        fos = new FileOutputStream(destFile);
                        fileSize = srcFile.length();
                        byte Buf[] = new byte[BUFSIZ];
                        while(copiedBytes < fileSize)
                             ReadBytes = fis.read(Buf, 0, BUFSIZ);
                             fos.write(Buf);
                             copiedBytes +=ReadBytes;
                        isCopySucess = true;
              }catch(Exception ex)
                   isCopySucess = false;
                   ex.printStackTrace();
              //============================================
              finally{
                   try {
                        if(fis != null)
                             fis.close();
                        if(fos != null)
                             fos.close();
                   } catch (final IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                   return isCopySucess;
         }

    ReadBytes = fis.read(Buf, 0, BUFSIZ);
    fos.write(Buf, 0, ReadBytes);

  • How to reverse find through powershell script in contents of the file

    Hello All,
    Following script is to perform the find and replace in the files:
    [CmdletBinding(SupportsShouldProcess=$True)]
    param (
    [Parameter(Mandatory=$true)]
    [string] $inst1 = $null,
    [Parameter(Mandatory=$true)]
    [string] $inst2 = $null,
    [Parameter(Mandatory=$true)]
    [string] $FPath = $null
    (get-content $FPath) | foreach-object {$_ -replace $inst1, $inst2} | set-content $FPathAbove script find and replace from starting of the string in the file contents.Please suggest how to achieve find and replace from last of the string for example:string is a\b\c\d\e and find "\" from last and replace it with Test, output should be Teste.Thank You

    #string is a\b\c\d\e and find "\" from last and replace it with Test, output should be Teste.
    $string = 'a\b\c\d\e'
    $Replace = 'Test'
    $string -replace '.+\\',$Replace
    Teste
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Is there a way to batch rename PDFs in a folder with content from the file? i.e. the title field

    Hi, I have a load of documents in a folder. Most have names like 2334.pdf, 3645.pdf etc. Does anyone know of a way to automatically get the title from withing each file and rename the file with that title i.e. doc title.pdf
    I found a product from a-odf.com that claims to do this, but I was hoping to use adobe's product.
    Thanks in advance
    Nelson

    There is no "out of box" tool per se that does this type of task, but you could probably script it with an Action that uses JavaScript.  If you are not familiar with Acrobat JavaScript then you will need to find someone who is familiar with it to assist you in building it.

  • Is there a way to automate file creation based on a template with content in the file being different based on a list?

    That was very wordy and I can not at the time make it any better.
    I have a template of a decal. I want to make many of these decals but with a different name on each decal. Is there some way I can feed a list to Illustrator and have it automatically generate the decal files, with the text changed in each file to a name on the list? That way I don't have to open up the same template, 30, 40, 50 times and manually change the text content for every name I need.

    The Variable Data function should be the direction to take for this type of workflow.
    http://help.adobe.com/en_US/Illustrator/14.0/WS714a382cdf7d304e7e07d0100196cbc5f-6298a.htm l
    This link will give you a quick overview.
    http://help.adobe.com/en_US/Illustrator/14.0/WS714a382cdf7d304e7e07d0100196cbc5f-62a2a.htm l
    This is not something I do everyday. Only done this on a couple of jobs which had to have text change in a couple of places with a static background. I don't see a need for this function much with my current workflow, seems like the setup of the template file with variables takes longer than just creating the 12 or 15 files needed. But if you have to create 500 files from one template and can determine what variables need to change then this may be something you want to get good at.

  • Opening a file without erasing the content of the file FileOutputStream

    Hello every one is there any way to open a file by FileOutputStream with out Erassing the previously written content.
    appreciate your concern.
    Bye.

    Hello every one is there any way to open a file by
    FileOutputStream with out Erassing the previously
    written content.hint: Look at the API. One of the c'tors takes a boolean.

  • I upgraded Firefox last week and since when I want to attach a picture or something to my yahoo-mail, than the whole content of the file ( ordner) will be attached and I cannot add anything since that time !

    I upgraded Firefox last week on my labtop and since when I want
    to attach a picture or textdocument to my email ( yahoo ), than the whole file will be attached and the capacity is to big and I
    can attach nothing ... so what to do ?

    Hi David,
    Thank you for your detailed question. It sounds like the real issue is pdf files. Are there any antivirus/firewalls that might be blocking this specific file type? or are there any preferences in your control panel that might be blocking this?
    Do you have any stored preferences for PDF files in Firefox?
    *[[Applications panel - Set how Firefox handles different types of files]]

  • Comparing the content of the file

    Can somebody help me make a program that checks the comments of a program. it goes something like this You will be checking the /**/ of the program only. I have a sample code but it is not running. Pls help me
    import java.io.*;
    import java.util.*;
    class Check
         public static void main(String args[])
              boolean sw;
              BufferedReader in = new BufferedReader(new FileReader("monkey.java"));
              String str;
              String ch;
         //     String in =var.readLine();
              int state = 1;
              while ((str = in.readLine()) !=null){
              char ch = in.getAnyChar();
              switch(state){
                   case 1: //Q1
                        if (ch =='/')
                             state = 2;
                        else if (ch == '*')
                             state = 6;
                        else
                             state = 1;
                        break;
                   case 2: //Q2
                        if (ch == '*')
                             state = 3;
                        else if (ch == '/')
                             state = 6;
                        break;
                   case 3: //Q3
                        if (ch == '*')
                             state = 4;
                        else if (ch == '/')
                             state = 3;
                        else
                             state = 3;
                        break;
                   case 4: //Q4
                        if (ch == '/')
                             state = 5;
                        else if (ch == '*')
                             state = 4;
                        else
                             state = 3;
                        break;
                   case 5: //Q5
                        if (ch == '/')
                             state = 2;
                        else if (ch == '*')
                             state =     6;
                        else
                             state = 5;
                        break;
                   case 6: //Q6
                        state = 6;
                        break;
              if (state == 5)
                   System.out.println ("Errors Found");
              else
                   System.out.println ("Compilation Complete");
         in.close();
    }

    Crosspost
    http://forum.java.sun.com/thread.jspa?threadID=597939&messageID=3177673

  • Checking  the content of the file

    Can somebody help me my problem is that I need to check whether a certain program places the comments correctly ex. /**/ this is the only comment that we are going to chek. I do have the program however it doesn,t work .
    Here is the code can somebodu help me please.
    import java.io.*;
    class Check
         public static void main(String args[])
              boolean sw;
              BufferedReader in = new BufferedReader(new FileReader("monkey.txt"));
              String str;
              String ch;
              int state = 1;
              while ((str = in.readLine()) !=null){
              char ch = in.getAnyChar();
                switch(state){
                     case 1: //Q1
                          if (ch =='/')
                               state = 2;
                          else if (ch == '*')
                               state = 6;
                          else
                               state = 1;
                          break;
                     case 2: //Q2
                          if (ch == '*')
                               state = 3;
                          else if (ch == '/')
                               state = 6;
                          break;
                     case 3: //Q3
                          if (ch == '*')
                               state = 4;
                          else if (ch == '/')
                               state = 3;
                          else
                               state = 3;
                          break;
                     case 4: //Q4
                          if (ch == '/')
                               state = 5;
                          else if (ch == '*')
                               state = 4;
                          else
                               state = 3;
                          break;
                     case 5: //Q5
                          if (ch == '/')
                               state = 2;
                          else if (ch == '*')
                               state =     6;
                          else
                               state = 5;
                          break;
                     case 6: //Q6
                          state = 6;
                          break;
              if (state == 5)
                   System.out.println ("Errors Found");
              else
                   System.out.println ("Compilation Complete");
             in.close();
    }

    public static final STATE_NORMAL = 0;
    public static final STATE_COMMANT = 0;
    public static void main(String args[]){
       int state = 0;
       BufferedReader in = new BufferedReader(new FileReader("monkey.txt"));
       String str;
       char prev = '0';
       char ch ='0';
       while ((str = in.readLine()) !=null){
          for (int i=0; i<str.length(); i++){
             prev = ch;
             ch = str.charAt(i);
             switch(state){
                   case STATE_NORMAL:
                                                   if ((prev == '/') && (ch == '*')){
                                                        state = STATE_COMMENT;
                                                   break;
                     case STATE_COMMENT:
                                                  if ((prev == '*') && (ch == '/')){
                                                        state = STATE_NORMAL;
    }

  • FILE UPLOAD PROBLEM SHOWING THE CONTENTS IN THE SAME BROWSER WINDOW

    Hi,
    This is amit Joshi
    I have uploaded content using input tag of type file and posted to jsp as multipart/form-data type
    in that jsp i am using following code to display the content in browser but only first content is displayed How can i modify it to show all content in the file ..
    <html>
    <head>
    <title>File Upload Display</title>
    </head>
    <body>
    <%
    //ServletOutputStream sout=response.getOutputStream();
    StringBuilder strBuilder = new StringBuilder();
    int count=0;
    String f;
    f=request.getParameter("filedb");
    DBManager dbm = new DBManager();
    //dbm.createTable("mms3");
    //log.info("In JSP : "+ f);
    //dbm.insert_data(f,"mms3");
    %>
    <%
    if (ServletFileUpload.isMultipartContent(request)){
    ServletFileUpload servletFileUpload = new ServletFileUpload(new DiskFileItemFactory());
    List fileItemsList = servletFileUpload.parseRequest(request);
    strBuilder.append("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>").append('\r').append('\n').append("<xpage version=\"1.0\">").append('\r').append('\n');
    String optionalFileName = "";
    FileItem fileItem = null;
    Iterator it = fileItemsList.iterator();
    ServletOutputStream outputStream=null;
    while (it.hasNext()){
    FileItem fileItemTemp = (FileItem)it.next();
    if (fileItemTemp.isFormField()){
    %>
    <b>Name-value Pair Info:</b>
    Field name: <%= fileItemTemp.getFieldName() %>
    Field value: <%= fileItemTemp.getString() %>
    <%
    if (fileItemTemp.getFieldName().equals("filename"))
    optionalFileName = fileItemTemp.getString();
    else
    fileItem = fileItemTemp;
    if (fileItem!=null){
    String fileName = fileItem.getName();
    %>
    <b>Uploaded File Info:</b>
    Content type: <%= fileItem.getContentType() %>
    Field name: <%= fileItem.getFieldName() %>
    File name: <%= fileName %>
    <%
    if(fileItem.getContentType().equals("image/jpeg")) { %>
    File : <p><%
         //response.setContentType("image/gif");
         byte[] bArray=fileItem.get();
         response.setContentType("image/jpeg");
         outputStream=null;
         outputStream= response.getOutputStream();
         outputStream.write(bArray);
         outputStream.flush();
         outputStream.close();
    else if(fileItem.getContentType().equals("text/plain"))
         %> File : <%= fileItem.getString() %>
    <%
    byte[] bArray=fileItem.get();
    response.setContentType("text/plain");
         outputStream = response.getOutputStream();
         out.println();
         outputStream.write(bArray);
         outputStream.flush();
         outputStream.close();
    %> </p> <%
    %>
    </body>
    </html>
    Edited by: Amit_Joshi on Nov 13, 2007 10:58 PM

    Well Well Well..
    That would not work...
    What you have to do is save the uploaded file content on to a location and then pass the fileName as a request parameter to a deidicated which displays the contents of that file.
    Just as an example
    <html>
    <head>
    <title>File Upload Display</title>
    </head>
    <body>
    <%
    //ServletOutputStream sout=response.getOutputStream();
    StringBuilder strBuilder = new StringBuilder();
    int count=0;
    String f;
    f=request.getParameter("filedb");
    DBManager dbm = new DBManager();
    //dbm.createTable("mms3");
    //log.info("In JSP : "+ f);
    //dbm.insert_data(f,"mms3");
    %>
    <%
    if (ServletFileUpload.isMultipartContent(request)){
    ServletFileUpload servletFileUpload = new ServletFileUpload(new DiskFileItemFactory());
    List fileItemsList = servletFileUpload.parseRequest(request);
    strBuilder.append("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>").append('\r').append('\n').append("<xpage version=\"1.0\">").append('\r').append('\n');
    String optionalFileName = "";
    FileItem fileItem = null;
    Iterator it = fileItemsList.iterator();
    ServletOutputStream outputStream=null;
    while (it.hasNext()){
       FileItem fileItemTemp = (FileItem)it.next();
    %>
    Name-value Pair Info:
    Field name: <%= fileItemTemp.getFieldName() %><br/>
    Field value: <%= fileItemTemp.getString() %><br/>
    <%
    if (fileItemTemp.getFieldName().equals("filename"))
        optionalFileName = fileItemTemp.getString();
    if(!fileTempItem.isFormFiled()){
       String fileName = fileItem.getName();
       fileItem.write(optionalFileName);
    %>
    Uploaded File Info:
    Content type: <%= fileItem.getContentType() %><br/>
    Field name: <%= fileItem.getFieldName() %><br/>
    File name: <%= fileName %><br/>
    <%
    if(fileItem.getContentType().equals("image/jpeg") || fileItem.getContentType().equals("image/pjeg")) {
    %>
      <img src="FileServlet?fileName=<%=optionalFileName%>"   
    <%
    %>
    </body>
    </html>a sample code snippet for FileServlet.
    String fileName =  request.getParameter(fileName);
      File file = new File(fileName);
       if(!file.exists())
         return;
      // If JSP
      String mimeType = application.getMimeType("fileName");
           If you are using servlet
           String mimeType = this.getServletContext().getMimeType(fileName);
         response.setContentType(mimeType);  
         response.setHeader("Content-Disposition","inline;filename=\\"+fileName+"\\");
      BufferedOutputStream out1 = null;
      InputStream in = null;
      if(mimeType == null)
         mimeType = "application/octet-stream";
      try{
         in = new FileInputStream(f);
         response.setContentLength(in.available());
         BufferedOutputStream out1 = new BufferedOutputStream(response.getOutputStream(),1024);
         int size = 0;
         byte[] b = new byte[1024];
         while ((size = in.read(b, 0, 1024)) > 0)
            out1.write(b, 0, size);
      }catch(Exception exp){
      }finally{
          if(out1 != null){
             try{
                out1.flush();               
                out1.close();
             }catch(Exception e){}
          if(in != null){
            try{in.close();}catch(Exception e){}
      } Hope that might answer your question :)
    However,this is not the recommended way of doing this make use of MVC pattern.Would be a better approach.
    you might think of googling on this and can findout what is the best practise followed for problems of this sort
    REGARDS,
    RaHuL

  • How to print the content in Reverse which is read from the file

    i have written a program to display the content of the file using files concept. now the task is how to display it in reverse order i.e from last to first which is read from the file.

    If it will all fit in memory read the file as you are doing now appending everything into a StringBuilder. Then use the reverse() method of that class to obtain your output.
    http://java.sun.com/javase/6/docs/api/java/lang/StringBuilder.html#reverse()

Maybe you are looking for

  • POST request in a login script

    I have a strange problem when the variables that are passed to a PHP script dont get recognized in an equal statement. The java code : tring value, value2;      try {      BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));  

  • Hard Drive on iMac suddenly full

    I had Time Machine set up and working perfectly. Yesterday, I had 191 GB free on my iMac. Today after school, I turned on my iMac and I had 2MB free!! What happened to my hard drive? I called the Apple store and they knew nothing. They told me to cal

  • Show List/Libraries with heading dynamically in SharePoint 2013

    Hi, I want to show the all the list under List label and all libraries under libraries in quick launch as in SharePoint 2010. I want to achieve this in SharePoint 2013. So the list /libraries should dynamically added to the corresponding group. Pleas

  • Automatically adjust levels in a track to create a common "volume"

    Sorry for the dumb question but I am totally new to audio. I have recorded a conference where there were multiple speakers sitting different distances away from 2 microphones. Therefore, the levels of each speaker are different due to their differing

  • Unable to delete UBE versions from OMW

    We are on JDE 8.2 and recently I created a project and added a UBE and four versions, I wanted to delete those four versions since we have other vesions for this ube that had replaced these older versions, i was able to delete the two out of those fo