Questions tagged [utility]

Utility software is system software designed to help analyze, configure, optimize or maintain a computer. A single piece of utility software is usually called a utility or tool.

Utility software usually focuses on how the computer infrastructure (including the computer hardware, operating system, application software and data storage) operates. Due to this focus, utilities are often rather technical and targeted at people with an advanced level of computer knowledge - in contrast to application software, which allows users to do things like creating text documents, playing games, listening to music or viewing websites.

367 questions
0
votes
2 answers

Take an array input using a generic function in java

what I am trying to do is, I have a UTILITY package and I wanted to make a class GetArray with a method get, which creates an array and return that array, also I wanted to make this method generic so I could create what ever type of array I wanted…
user6735558
0
votes
2 answers

What is the "Jodatime" / "Apache commons" of Zip/Unzip Java utilities?

I'm sure that there is a mature, widely used ZIP file utility out there, I just can't seem to find out. Something with the same maturity as Apache Commons, Google Collections, Joda Time I'm trying to do the simplest task of getting a zip file as a…
Eran Medan
  • 44,555
  • 61
  • 184
  • 276
0
votes
1 answer

How to define a helper method shared by multiple classes?

what would be the best way to go about this? For instance, consider the following code: public class ObjectA { public int data; public ObjectA() { this.data = 1; } public changeData(int x) { this.data = x; …
plsplox
  • 179
  • 2
  • 11
0
votes
1 answer

While running UploadJars utility in OIM following exception is coming

While running UploadJars utility after giving all the parameters, utility is failing with following exception: Logging configuration class "oracle.core.ojdl.logging.LoggingConfiguration" failed java.lang.ClassNotFoundException:…
Chaitanya K
  • 1,827
  • 4
  • 32
  • 67
0
votes
2 answers

Argument of the utility "file" in Bash

Okay so what I am trying to do, there is an utility called "file" in bash and I want to pass it all files in current directory and in all subdirectories as an argument. Best thing would be, if I could pass it list of files from "find" find -type f |…
0
votes
1 answer

Create custom map (not world map) for navigation

I want to create a custom map (not of any country/state/city) which can be used for navigation. Am looking for any existing tool that can help me do that for both iOS and Android application. The map would not be a earth map but some custom map…
Ankit
  • 6,388
  • 8
  • 54
  • 79
0
votes
3 answers

unix utility to compare lists and perform a set operation

I believe what I'm asking for is a sort of set operation. I need help trying to create a list of the following: List1 contains: 1 2 3 A B C List2 contains: 1 2 3 4 5 A B C D E (I need this) - The Final list I need would be (4) items: 4 5 D E So…
noober
  • 1,427
  • 3
  • 23
  • 36
0
votes
1 answer

zapier lookup to iterate through array

We are using zapier to push an invoice from Quickbooks Online (QBO) to ShipStation (SS). Everything is mapped fine except the SKU field (which for some reason QBO doesn't pass). So I created a lookup using a multi-zap and the Formatter Utility to…
jöhg
  • 212
  • 2
  • 12
0
votes
2 answers

replace a string in huge file by incrementing with it number of appearance in file?

I have a file of 500MB and it has strings : string_1 ..... string_500, I need generate the copy of this file which has : string_501.......string_1000 I need to do this up to string_500000, what's the best way to solve this?
Ramadheer Singh
  • 4,124
  • 4
  • 32
  • 44
0
votes
5 answers

Utility Classes in Java Programming

I am new to Java and I referred regarding my question on the Net but not quite Satisfied. I want to know what the "Utility Class" in Java is? Can anybody please tell me with an Example. Thanks, david
David Brown
  • 4,783
  • 17
  • 50
  • 75
0
votes
1 answer

How can I view http requests made from my system (not web browser)?

How can I see the http requests originating from my Windows system. Is there any utility (windows/visual studio/command line) to do that, which shows exactly like the Network pane in console of a web browser. The scenario - I am debugging a third…
Lakshay Dulani
  • 1,710
  • 2
  • 18
  • 45
0
votes
1 answer

programming tools: "less" that knows how to look at the most recent changed file in a directory

I have a program that outputs a logfile with a filename that changes each time it runs, so that I can keep permanent records for each run session. Is there any utility like "less" that I can use to display the last N lines of the file that has…
Jason S
  • 184,598
  • 164
  • 608
  • 970
0
votes
0 answers

Teradata Multi load Not Proceed

mload step .LOGTABLE truser2.logtable; .LOGON 127.0.0.1/truser2,trpass2; .begin import mload tables coldata_test WORKTABLES wt_test1 ERRORTABLES wt_test1 uv_test1 ERRLIMIT 1000 CHECKPOINT 100000 AMPCHECK NONE; .layout test_layout; .field col01 *…
koreaKim
  • 21
  • 3
0
votes
1 answer

Correct BCP syntax

I am a first time BCP user. I have an XML file that I need to import into a new table in SQL Server. This is using SQL Server 2008 and BCP version 10.50.16. I read through the documentation but I get 370,000 errors! (This is a very large file). …
salvationishere
  • 3,461
  • 29
  • 104
  • 143
0
votes
2 answers

find ~/Desktop creek.jpg returns no such file or directory when creek.jpg is on my desktop. Why?

I am learning the linux utility find and am finding the man page difficult to read. I have defaulted to testing the command and seeing what it does. I have a file called creek.jpg on my desktop. When I type find ~/Desktop creek.jpg It appears…
Tara Roys
  • 1,756
  • 2
  • 17
  • 31